diff options
author | Peter Valchev <pvalchev@cvs.openbsd.org> | 2001-07-17 02:24:01 +0000 |
---|---|---|
committer | Peter Valchev <pvalchev@cvs.openbsd.org> | 2001-07-17 02:24:01 +0000 |
commit | f4e7ed46357090ce61bed511ee4cb53fcfa67522 (patch) | |
tree | 2c26f79ad6c1190ba713dbb517a160af1e7c8a04 /usr.bin/tftp/main.c | |
parent | fede51bc6df1cd1fce250efe151ecc1cb867f1d9 (diff) |
-Wall cleanup; ok deraadt
Diffstat (limited to 'usr.bin/tftp/main.c')
-rw-r--r-- | usr.bin/tftp/main.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/tftp/main.c b/usr.bin/tftp/main.c index 2a71ab739be..35bb9ad673d 100644 --- a/usr.bin/tftp/main.c +++ b/usr.bin/tftp/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.6 2001/03/22 01:34:01 mickey Exp $ */ +/* $OpenBSD: main.c,v 1.7 2001/07/17 02:23:59 pvalchev Exp $ */ /* $NetBSD: main.c,v 1.6 1995/05/21 16:54:10 mycroft Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/6/93"; #endif -static char rcsid[] = "$OpenBSD: main.c,v 1.6 2001/03/22 01:34:01 mickey Exp $"; +static char rcsid[] = "$OpenBSD: main.c,v 1.7 2001/07/17 02:23:59 pvalchev Exp $"; #endif /* not lint */ /* Many bug fixes are from Jim Guyton <guyton@rand-unix> */ @@ -182,6 +182,7 @@ main(argc, argv) if (setjmp(toplevel) != 0) (void)putchar('\n'); command(); + return (0); } char hostname[MAXHOSTNAMELEN]; |