aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcerpc-dfs.c
diff options
context:
space:
mode:
authorulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2007-03-27 02:14:56 +0000
committerulfl <ulfl@f5534014-38df-0310-8fa8-9805f1628bb7>2007-03-27 02:14:56 +0000
commitcc6aeb92474af6f6f17a72cccf3cb7e72b1ba23a (patch)
tree00c229fc00e704d7d93adc207848d84a29e8c285 /epan/dissectors/packet-dcerpc-dfs.c
parent380551336071a31281e70afea1aafe151eb0d76c (diff)
fix the remaining MSVC warnings by setting individual #pragma(warning:disable) settings - this is very certainly not the way to go, but the way to prevent additional warnings rushing in ...
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21221 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-dcerpc-dfs.c')
-rw-r--r--epan/dissectors/packet-dcerpc-dfs.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/epan/dissectors/packet-dcerpc-dfs.c b/epan/dissectors/packet-dcerpc-dfs.c
index 24578a7b43..09fa25714b 100644
--- a/epan/dissectors/packet-dcerpc-dfs.c
+++ b/epan/dissectors/packet-dcerpc-dfs.c
@@ -22,6 +22,11 @@
#include "packet-windows-common.h"
#include "packet-dcerpc-dfs.h"
+#ifdef _WIN32
+/* disable: warning C4101: 'xy' : unreferenced local variable */
+#pragma warning(disable:4101)
+#endif
+
/* Ett declarations */
static gint ett_dcerpc_netdfs = -1;
static gint ett_netdfs_dfs_Info0 = -1;