diff options
author | Sunil Nimmagadda <sunil@cvs.openbsd.org> | 2019-05-14 02:32:09 +0000 |
---|---|---|
committer | Sunil Nimmagadda <sunil@cvs.openbsd.org> | 2019-05-14 02:32:09 +0000 |
commit | 502ea20b4e716f9f6fe460b8889b7ff795e66b52 (patch) | |
tree | d712a3c76f8d26e7ca82b1fdf8c06c9847481def | |
parent | 421a703827d2b163b55bc190731a1a4d7c221dbc (diff) |
Remove an unused and leftover label.
-rw-r--r-- | usr.bin/ftp/main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/ftp/main.c b/usr.bin/ftp/main.c index 6495e2f6fc5..f3c4f053062 100644 --- a/usr.bin/ftp/main.c +++ b/usr.bin/ftp/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.124 2019/05/12 21:49:52 espie Exp $ */ +/* $OpenBSD: main.c,v 1.125 2019/05/14 02:32:08 sunil Exp $ */ /* * Copyright (c) 2015 Sunil Nimmagadda <sunil@openbsd.org> @@ -272,7 +272,6 @@ parent(int sock, pid_t child_pid) } close(sock); - done: if (waitpid(child_pid, &status, 0) == -1 && errno != ECHILD) err(1, "wait"); |