diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-11-05 07:58:33 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-11-05 07:58:33 +0000 |
commit | d5727068bbfd7586122b5637fb05ceaf6cd682d9 (patch) | |
tree | ef9c9a0937959b6816163e1135154ba3e1d9dac0 | |
parent | eff04e8baea57e7effa1cf3f3eeca0d05dd08f0d (diff) | |
download | wireshark-d5727068bbfd7586122b5637fb05ceaf6cd682d9.tar.gz wireshark-d5727068bbfd7586122b5637fb05ceaf6cd682d9.tar.bz2 wireshark-d5727068bbfd7586122b5637fb05ceaf6cd682d9.zip |
Fix the previous change to handle SMBs with tvbuffified dissectors.
svn path=/trunk/; revision=4161
-rw-r--r-- | packet-smb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-smb.c b/packet-smb.c index 2165a7eb4c..13e781690f 100644 --- a/packet-smb.c +++ b/packet-smb.c @@ -2,7 +2,7 @@ * Routines for smb packet dissection * Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com> * - * $Id: packet-smb.c,v 1.133 2001/11/05 07:46:01 guy Exp $ + * $Id: packet-smb.c,v 1.134 2001/11/05 07:58:33 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -4385,7 +4385,7 @@ wrap_dissect_smb_command(proto_tree *top_tree, const guint8 *pd, int offset, smb_dissector[cmd].response){ /* call smb command dissector */ our_pinfo->private_data = si; - dissect_smb_command(our_tvb, our_pinfo, top_tree, offset, smb_tree, cmd); + dissect_smb_command(our_tvb, our_pinfo, top_tree, offset, our_tree, cmd); } else { proto_item *cmd_item; proto_tree *cmd_tree; |