aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcerpc-dfs.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2007-03-27 02:14:56 +0000
committerUlf Lamping <ulf.lamping@web.de>2007-03-27 02:14:56 +0000
commitc2408435bc165abba58605750121829aa9a403d2 (patch)
tree00c229fc00e704d7d93adc207848d84a29e8c285 /epan/dissectors/packet-dcerpc-dfs.c
parent8f0c262af1ca25ccd1c971fda4bf252010bdfd73 (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 ...
svn path=/trunk/; revision=21221
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;