diff options
author | guy <guy> | 2001-03-19 03:58:10 +0000 |
---|---|---|
committer | guy <guy> | 2001-03-19 03:58:10 +0000 |
commit | 2a579c6b18e16138a1296e6942c84cde163d0717 (patch) | |
tree | 39d2a3ae50574fb826f882f90b2fe4caf03aa049 /print-cip.c | |
parent | c0781576e11dc6df0813823c1fc109f81a39a088 (diff) | |
download | tcpdump-2a579c6b18e16138a1296e6942c84cde163d0717.tar.gz |
Patches from Michael Madore <mmadore@turbolinux.com> to include
<string.h> in "print-cip.c" and "print-radius.c" to properly declare
"memcmp()" and "strcpy()".
Diffstat (limited to 'print-cip.c')
-rw-r--r-- | print-cip.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/print-cip.c b/print-cip.c index 58fec126..a6467136 100644 --- a/print-cip.c +++ b/print-cip.c @@ -22,13 +22,15 @@ #ifndef lint static const char rcsid[] = - "@(#) $Header: /tcpdump/master/tcpdump/print-cip.c,v 1.11 2000-12-22 22:45:10 guy Exp $ (LBL)"; + "@(#) $Header: /tcpdump/master/tcpdump/print-cip.c,v 1.12 2001-03-19 03:58:10 guy Exp $ (LBL)"; #endif #ifdef HAVE_CONFIG_H #include "config.h" #endif +#include <string.h> + #include <sys/param.h> #include <sys/time.h> #include <sys/types.h> |