diff options
author | 2005-03-06 21:05:49 +0000 | |
---|---|---|
committer | 2005-03-06 21:05:49 +0000 | |
commit | 65a527056f355df6c00833b825155dcdd7c7ea23 (patch) | |
tree | 9484ca0d2be9ccb7b5de15c164947dfa22277e8c /usr.sbin/tcpdump/tcpdump.c | |
parent | allow commas in the hfsc service curve spec, inconsistency pointed out in (diff) | |
download | wireguard-openbsd-65a527056f355df6c00833b825155dcdd7c7ea23.tar.xz wireguard-openbsd-65a527056f355df6c00833b825155dcdd7c7ea23.zip |
uppercase takes precedence over lower when sorting options;
Diffstat (limited to 'usr.sbin/tcpdump/tcpdump.c')
-rw-r--r-- | usr.sbin/tcpdump/tcpdump.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/tcpdump/tcpdump.c b/usr.sbin/tcpdump/tcpdump.c index 8f129b7e514..0cfb3567471 100644 --- a/usr.sbin/tcpdump/tcpdump.c +++ b/usr.sbin/tcpdump/tcpdump.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcpdump.c,v 1.40 2005/03/06 18:44:50 reyk Exp $ */ +/* $OpenBSD: tcpdump.c,v 1.41 2005/03/06 21:05:49 jmc Exp $ */ /* * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997 @@ -26,7 +26,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.40 2005/03/06 18:44:50 reyk Exp $ (LBL)"; + "@(#) $Header: /home/cvs/src/usr.sbin/tcpdump/tcpdump.c,v 1.41 2005/03/06 21:05:49 jmc Exp $ (LBL)"; #endif /* @@ -681,7 +681,7 @@ usage(void) (void)fprintf(stderr, "%s version %s\n", program_name, version); (void)fprintf(stderr, "libpcap version %s\n", pcap_version); (void)fprintf(stderr, -"Usage: %s [-adeflLnNoOpqStvxX] [-c count] [-E [espalg:]espkey] [-F file]\n", +"Usage: %s [-adefLlNnOopqStvXx] [-c count] [-E [espalg:]espkey] [-F file]\n", program_name); (void)fprintf(stderr, "\t\t[-i interface] [-r file] [-s snaplen] [-T type] [-w file]\n"); |