diff options
author | Bill Meier <wmeier@newsguy.com> | 2014-06-29 13:39:24 -0400 |
---|---|---|
committer | Bill Meier <wmeier@newsguy.com> | 2014-06-29 17:50:55 +0000 |
commit | 60ffafdb7c762a25c8fe36b763041899a4a599f7 (patch) | |
tree | 0739d4d339b30162ccc618666c94477ba8acbe03 /capinfos.c | |
parent | f174370ddb1e0ab7b9c4aad30e1ac899d24a0b4c (diff) | |
download | wireshark-60ffafdb7c762a25c8fe36b763041899a4a599f7.tar.gz wireshark-60ffafdb7c762a25c8fe36b763041899a4a599f7.tar.bz2 wireshark-60ffafdb7c762a25c8fe36b763041899a4a599f7.zip |
Fix compile error when building w/o GNUTLS
Specifically: <wsutil/file_util.h> is aleays needed (for create_app_running_mutex())
Change-Id: I78e5a767f62bc2af67b6407539742dc245259f56
Reviewed-on: https://code.wireshark.org/review/2699
Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'capinfos.c')
-rw-r--r-- | capinfos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/capinfos.c b/capinfos.c index e43fa049b5..b01b7e2142 100644 --- a/capinfos.c +++ b/capinfos.c @@ -84,10 +84,10 @@ #include <wsutil/report_err.h> #include <wsutil/privileges.h> #include <wsutil/str_util.h> +#include <wsutil/file_util.h> #ifdef HAVE_LIBGCRYPT #include <wsutil/wsgcrypt.h> -#include <wsutil/file_util.h> #endif #ifndef HAVE_GETOPT |