diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-09-11 16:16:13 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-09-11 16:16:13 +0000 |
commit | 9941aabd64835e9c2e855b44cf0a6e336443b468 (patch) | |
tree | 28e1aeb36631c1474511888f369601cf33640617 /packet-http.c | |
parent | bf98417be05a76e93fd3976fef85110be51be780 (diff) | |
download | wireshark-9941aabd64835e9c2e855b44cf0a6e336443b468.tar.gz wireshark-9941aabd64835e9c2e855b44cf0a6e336443b468.tar.bz2 wireshark-9941aabd64835e9c2e855b44cf0a6e336443b468.zip |
Move format_text(), get_token_len(), and fine_line_end(), into strutil.c
This keeps tvbuff.c generic; it doesn't have to pull in packet.h and all
of it's included files.
svn path=/trunk/; revision=2409
Diffstat (limited to 'packet-http.c')
-rw-r--r-- | packet-http.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-http.c b/packet-http.c index 5b1e88366c..daacc6e1d2 100644 --- a/packet-http.c +++ b/packet-http.c @@ -3,7 +3,7 @@ * * Guy Harris <guy@alum.mit.edu> * - * $Id: packet-http.c,v 1.21 2000/08/13 14:08:12 deniel Exp $ + * $Id: packet-http.c,v 1.22 2000/09/11 16:16:02 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -41,6 +41,7 @@ #include <glib.h> #include "packet.h" #include "packet-ipp.h" +#include "strutil.h" typedef enum _http_type { HTTP_REQUEST, |