summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@ns.aus.com>2001-01-03 04:37:07 +0000
committerRichard Sharpe <sharpe@ns.aus.com>2001-01-03 04:37:07 +0000
commit6c75aa83f9559312b7a3d3bf5989ab6668dbd076 (patch)
treed418f27f3de841c98027df367b5b8f15ba09cced
parentc3211e8eeb8f0c85889c51d447dcd8e5fbc36a68 (diff)
downloadwireshark-6c75aa83f9559312b7a3d3bf5989ab6668dbd076.tar.gz
Fix a damn stupid mistake that stopped us seeing all the bits in the flags on a NetServerEnum2 request.
svn path=/trunk/; revision=2809
-rw-r--r--packet-smb-pipe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-smb-pipe.c b/packet-smb-pipe.c
index 0cb0bf763d..4215fda469 100644
--- a/packet-smb-pipe.c
+++ b/packet-smb-pipe.c
@@ -2,7 +2,7 @@
* Routines for smb packet dissection
* Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
*
- * $Id: packet-smb-pipe.c,v 1.13 2001/01/01 01:44:46 sharpe Exp $
+ * $Id: packet-smb-pipe.c,v 1.14 2001/01/03 04:37:07 sharpe Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -565,7 +565,7 @@ dissect_pipe_lanman(const u_char *pd, int offset, frame_data *fd,
guint16 FunctionCode;
guint16 Level;
guint16 RecvBufLen;
- guint16 Flags;
+ guint32 Flags;
const char *ParameterDescriptor;
const char *ReturnDescriptor;
proto_tree *lanman_tree = NULL, *flags_tree = NULL;