diff options
author | 2004-06-20 17:51:55 +0000 | |
---|---|---|
committer | 2004-06-20 17:51:55 +0000 | |
commit | 5ca1dbc477c0b9307808aab24c0db866360baee7 (patch) | |
tree | 7f3af8bbf1427098084d8c55d5a0c94c76dbaf0c /usr.sbin/tcpdump/tcpdump.c | |
parent | implement file descriptor passing in the imsg/msgbuf framework, and use (diff) | |
download | wireguard-openbsd-5ca1dbc477c0b9307808aab24c0db866360baee7.tar.xz wireguard-openbsd-5ca1dbc477c0b9307808aab24c0db866360baee7.zip |
- do not use __attribute__((volatile)) as its a synonym for __dead nowadays
- bad format string "\%s" -> "%s" in print-ike.c
fixes parsing using CIL, discussed with millert@ niklas@
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 2c1885ba084..e2dc77f5dba 100644 --- a/usr.sbin/tcpdump/tcpdump.c +++ b/usr.sbin/tcpdump/tcpdump.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcpdump.c,v 1.37 2004/05/21 05:48:50 brad Exp $ */ +/* $OpenBSD: tcpdump.c,v 1.38 2004/06/20 17:51:55 avsm 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.37 2004/05/21 05:48:50 brad Exp $ (LBL)"; + "@(#) $Header: /home/cvs/src/usr.sbin/tcpdump/tcpdump.c,v 1.38 2004/06/20 17:51:55 avsm Exp $ (LBL)"; #endif /* @@ -92,7 +92,7 @@ extern int esp_init(char *); /* Forwards */ RETSIGTYPE cleanup(int); -extern __dead void usage(void) __attribute__((volatile)); +extern __dead void usage(void); /* Length of saved portion of packet. */ int snaplen = DEFAULT_SNAPLEN; |