diff options
author | Jeff Morriss <jeff.morriss.ws@gmail.com> | 2013-07-15 02:48:26 +0000 |
---|---|---|
committer | Jeff Morriss <jeff.morriss.ws@gmail.com> | 2013-07-15 02:48:26 +0000 |
commit | 54bb2e7a5c0df621f3d59056ece86934082814be (patch) | |
tree | dd13c52ad2628208b6667668a2ed34b6fbe55598 /capinfos.c | |
parent | 27059c2804a7efc0f4f1e91dbfff88039407920d (diff) | |
download | wireshark-54bb2e7a5c0df621f3d59056ece86934082814be.tar.gz wireshark-54bb2e7a5c0df621f3d59056ece86934082814be.tar.bz2 wireshark-54bb2e7a5c0df621f3d59056ece86934082814be.zip |
Move report_err.{h,c} from epan into wsutil: there's nothing epan-specific there and moving it avoids having to recompile the file for use in editcap and capinfos (which don't link against libwireshark).
svn path=/trunk/; revision=50598
Diffstat (limited to 'capinfos.c')
-rw-r--r-- | capinfos.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/capinfos.c b/capinfos.c index 5bca75c46b..e6da645758 100644 --- a/capinfos.c +++ b/capinfos.c @@ -85,14 +85,13 @@ */ #define WS_BUILD_DLL #define RESET_SYMBOL_EXPORT -#include <epan/packet.h> #include <epan/filesystem.h> #include <epan/plugins.h> -#include <epan/report_err.h> #undef WS_BUILD_DLL #define RESET_SYMBOL_EXPORT #include "wtap.h" +#include <wsutil/report_err.h> #include <wsutil/privileges.h> #include <wsutil/str_util.h> |