diff options
author | Guy Harris <guy@alum.mit.edu> | 2013-11-17 02:55:14 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2013-11-17 02:55:14 +0000 |
commit | db25270df8bb4e4800e4d2c8a9f930b7a9fbc8df (patch) | |
tree | 93833061315be739594ff3614850eb4ca63266ec /capinfos.c | |
parent | dd1034e1f5f2285721a9deb8b95ea17222e50939 (diff) | |
download | wireshark-db25270df8bb4e4800e4d2c8a9f930b7a9fbc8df.tar.gz wireshark-db25270df8bb4e4800e4d2c8a9f930b7a9fbc8df.tar.bz2 wireshark-db25270df8bb4e4800e4d2c8a9f930b7a9fbc8df.zip |
Move the epan/filesystem.c routines to wsutil; they're not specific to
packet dissection, they're specific to the entire Wireshark suite of
programs.
svn path=/trunk/; revision=53377
Diffstat (limited to 'capinfos.c')
-rw-r--r-- | capinfos.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/capinfos.c b/capinfos.c index af69da1478..893901579c 100644 --- a/capinfos.c +++ b/capinfos.c @@ -76,16 +76,16 @@ #include <glib.h> #include <wsutil/privileges.h> +#include <wsutil/filesystem.h> /* * The symbols declared in the below are exported from libwireshark, - * but we don't want to link whole libwireshark to editcap. + * but we don't want to link whole libwireshark to capinfos. * We link the object directly instead and this needs a little trick * with the WS_BUILD_DLL #define. */ #define WS_BUILD_DLL #define RESET_SYMBOL_EXPORT -#include <epan/filesystem.h> #include <epan/plugins.h> #undef WS_BUILD_DLL #define RESET_SYMBOL_EXPORT |