aboutsummaryrefslogtreecommitdiffstats
path: root/packet-smb-pipe.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-01-15 10:01:21 +0000
committerGuy Harris <guy@alum.mit.edu>2002-01-15 10:01:21 +0000
commit86d348aed18446bb1b598b82509c27679ace0559 (patch)
treec3abba1472451fe53306defcccebe2671a8d4798 /packet-smb-pipe.c
parentc8f8db531fbddaaddd1064f55ef4296e84d4c8f2 (diff)
Fix some preferences to eliminate the extra copy of the protocol name at
the beginning, and to use underscores rather than periods where the preference's name really isn't part of a hierarchical namespace. Use "%u" rather than "%d" to print unsigned quantities. svn path=/trunk/; revision=4543
Diffstat (limited to 'packet-smb-pipe.c')
-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 a0d7e018cd..26445ae704 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.62 2001/12/16 20:08:22 guy Exp $
+ * $Id: packet-smb-pipe.c,v 1.63 2002/01/15 10:01:20 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -2580,7 +2580,7 @@ dissect_pipe_dcerpc(tvbuff_t *d_tvb, packet_info *pinfo, proto_tree *parent_tree
it = proto_tree_add_text(tree, d_tvb, 0, 0, "Fragments");
tr = proto_item_add_subtree(it, ett_smb_pipe_fragments);
for(fd=fd_head->next;fd;fd=fd->next){
- proto_tree_add_text(tr, d_tvb, 0, 0, "Frame:%d Data:%d-%d",
+ proto_tree_add_text(tr, d_tvb, 0, 0, "Frame:%u Data:%u-%u",
fd->frame, fd->offset, fd->offset+fd->len-1);
}
}