diff options
author | Martin Mathieson <martin.r.mathieson@googlemail.com> | 2007-02-01 12:28:35 +0000 |
---|---|---|
committer | Martin Mathieson <martin.r.mathieson@googlemail.com> | 2007-02-01 12:28:35 +0000 |
commit | acfb8508f239f6fd1cfc3ba937ef4ca65f00408f (patch) | |
tree | 07c29ba21f1039db1e91a6fd2de3899ce440549a /pcapio.c | |
parent | a8699793aaf88d2b8d2b0c27d554d9100e7f08be (diff) | |
download | wireshark-acfb8508f239f6fd1cfc3ba937ef4ca65f00408f.tar.gz wireshark-acfb8508f239f6fd1cfc3ba937ef4ca65f00408f.tar.bz2 wireshark-acfb8508f239f6fd1cfc3ba937ef4ca65f00408f.zip |
Fix with-pcap build by disabling HAVE_LIBPCAP guard for now, for some reason it isn't defined when building this file.
svn path=/trunk/; revision=20667
Diffstat (limited to 'pcapio.c')
-rw-r--r-- | pcapio.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,5 @@ -#ifdef HAVE_LIBPCAP +/* TODO: why isn't this defined??? */ +/* #ifdef HAVE_LIBPCAP */ /* pcapio.c * Our own private code for writing libpcap files when capturing. @@ -187,4 +188,4 @@ libpcap_dump_close(FILE *pd, int *err) return TRUE; } -#endif /* HAVE_LIBPCAP */ +/*#endif */ /* HAVE_LIBPCAP */ |