diff options
author | 2000-03-26 05:24:25 +0000 | |
---|---|---|
committer | 2000-03-26 05:24:25 +0000 | |
commit | f744cbe1f029306c627a128fb700fe4a714c2260 (patch) | |
tree | d05864bd8c28512ae9578bbc3b88d09b3ad9307b | |
parent | Upgrade to Lynx 2.8.2. -moj (diff) | |
download | wireguard-openbsd-f744cbe1f029306c627a128fb700fe4a714c2260.tar.xz wireguard-openbsd-f744cbe1f029306c627a128fb700fe4a714c2260.zip |
correct usage() return value
-rw-r--r-- | usr.sbin/tcpdump/tcpdump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/tcpdump/tcpdump.c b/usr.sbin/tcpdump/tcpdump.c index 75f7880a9f9..b47704c3bc7 100644 --- a/usr.sbin/tcpdump/tcpdump.c +++ b/usr.sbin/tcpdump/tcpdump.c @@ -24,7 +24,7 @@ static const char copyright[] = "@(#) Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997\n\ The Regents of the University of California. All rights reserved.\n"; static const char rcsid[] = - "@(#) $Header: /home/cvs/src/usr.sbin/tcpdump/tcpdump.c,v 1.15 2000/01/16 13:36:36 jakob Exp $ (LBL)"; + "@(#) $Header: /home/cvs/src/usr.sbin/tcpdump/tcpdump.c,v 1.16 2000/03/26 05:24:25 ericj Exp $ (LBL)"; #endif /* @@ -517,5 +517,5 @@ usage(void) "\t\t[ -i interface ] [ -r file ] [ -s snaplen ]\n"); (void)fprintf(stderr, "\t\t[ -T type ] [ -w file ] [ expression ]\n"); - exit(-1); + exit(1); } |