diff options
author | Richard Sharpe <sharpe@ns.aus.com> | 2001-01-03 04:37:07 +0000 |
---|---|---|
committer | Richard Sharpe <sharpe@ns.aus.com> | 2001-01-03 04:37:07 +0000 |
commit | 6c75aa83f9559312b7a3d3bf5989ab6668dbd076 (patch) | |
tree | d418f27f3de841c98027df367b5b8f15ba09cced /packet-smb-pipe.c | |
parent | c3211e8eeb8f0c85889c51d447dcd8e5fbc36a68 (diff) | |
download | wireshark-6c75aa83f9559312b7a3d3bf5989ab6668dbd076.tar.gz wireshark-6c75aa83f9559312b7a3d3bf5989ab6668dbd076.tar.bz2 wireshark-6c75aa83f9559312b7a3d3bf5989ab6668dbd076.zip |
Fix a damn stupid mistake that stopped us seeing all the bits in the flags on a NetServerEnum2 request.
svn path=/trunk/; revision=2809
Diffstat (limited to 'packet-smb-pipe.c')
-rw-r--r-- | packet-smb-pipe.c | 4 |
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; |