diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-11-17 21:00:40 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-11-17 21:00:40 +0000 |
commit | abb6702fc2df96ea044d246e505c919dabb78159 (patch) | |
tree | e74fe2553f0d9467ac1df6233ce6593a35e97b04 /packet-bootp.c | |
parent | d50abaf3f4760996163539c90f4c982f2eaba4e6 (diff) | |
download | wireshark-abb6702fc2df96ea044d246e505c919dabb78159.tar.gz wireshark-abb6702fc2df96ea044d246e505c919dabb78159.tar.bz2 wireshark-abb6702fc2df96ea044d246e505c919dabb78159.zip |
Add #include <string.h>, to get prototypes for mem* and str* functions.
svn path=/trunk/; revision=2654
Diffstat (limited to 'packet-bootp.c')
-rw-r--r-- | packet-bootp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-bootp.c b/packet-bootp.c index 72d4f8f7cf..ce22592c3b 100644 --- a/packet-bootp.c +++ b/packet-bootp.c @@ -2,7 +2,7 @@ * Routines for BOOTP/DHCP packet disassembly * Gilbert Ramirez <gram@xiexie.org> * - * $Id: packet-bootp.c,v 1.40 2000/08/13 14:08:03 deniel Exp $ + * $Id: packet-bootp.c,v 1.41 2000/11/17 21:00:35 gram Exp $ * * The information used comes from: * RFC 951: Bootstrap Protocol @@ -41,6 +41,7 @@ # include <sys/types.h> #endif +#include <string.h> #include <glib.h> #include "packet.h" #include "packet-arp.h" |