aboutsummaryrefslogtreecommitdiffstats
path: root/packet-smb-pipe.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-08-11 17:17:42 +0000
committerGuy Harris <guy@alum.mit.edu>2001-08-11 17:17:42 +0000
commit91cdcfbaa34ee9e533a9867e8fda9fd338f71d79 (patch)
treea6e896084b83288be7d7854057a3c66c70ebe7c0 /packet-smb-pipe.c
parent0046494f94db773ae0d11ee96c59a6faee7e7671 (diff)
Put the continuation data into the protocol tree for a reply
continuation regardless of whether we have the frame number of the frame from which we're continuing. svn path=/trunk/; revision=3837
Diffstat (limited to 'packet-smb-pipe.c')
-rw-r--r--packet-smb-pipe.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-smb-pipe.c b/packet-smb-pipe.c
index 3f03a2e63d..49983b9d38 100644
--- a/packet-smb-pipe.c
+++ b/packet-smb-pipe.c
@@ -8,7 +8,7 @@ XXX Fixme : shouldnt show [malformed frame] for long packets
* significant rewrite to tvbuffify the dissector, Ronnie Sahlberg and
* Guy Harris 2001
*
- * $Id: packet-smb-pipe.c,v 1.30 2001/08/11 07:31:14 guy Exp $
+ * $Id: packet-smb-pipe.c,v 1.31 2001/08/11 17:17:42 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1419,9 +1419,9 @@ dissect_pipe_lanman(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
/* continuation from the message in frame xx */
proto_tree_add_uint(tree, hf_continuation_from, tvb,
0, 0, smb_info->continuation_val->frame);
- proto_tree_add_text(tree, tvb, 0, tvb_length(tvb),
- "Continuation data");
}
+ proto_tree_add_text(tree, tvb, 0, tvb_length(tvb),
+ "Continuation data");
return TRUE;
}