aboutsummaryrefslogtreecommitdiffstats
path: root/packet-smb.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-03-09 02:12:47 +0000
committerGuy Harris <guy@alum.mit.edu>2002-03-09 02:12:47 +0000
commiteb62c04d71de1af62e1ffbc333920444b4d72591 (patch)
tree08bcc34827dc47540d941bba7e3ab742518daf4b /packet-smb.c
parent828df9d18fff8203218cc7769bace60e0d34682c (diff)
No need to put ", N byte{s} at offset O" into the Info column twice;
once is enough. svn path=/trunk/; revision=4901
Diffstat (limited to 'packet-smb.c')
-rw-r--r--packet-smb.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/packet-smb.c b/packet-smb.c
index 653a7ac269..a6772ab59e 100644
--- a/packet-smb.c
+++ b/packet-smb.c
@@ -3,7 +3,7 @@
* Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
* 2001 Rewrite by Ronnie Sahlberg and Guy Harris
*
- * $Id: packet-smb.c,v 1.213 2002/02/27 02:42:19 tpot Exp $
+ * $Id: packet-smb.c,v 1.214 2002/03/09 02:12:47 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -3151,11 +3151,6 @@ dissect_write_file_request(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
proto_tree_add_item(tree, hf_smb_data_len, tvb, offset, 2, TRUE);
COUNT_BYTES(2);
- if (check_col(pinfo->cinfo, COL_INFO))
- col_append_fstr(pinfo->cinfo, COL_INFO,
- ", %d byte%s at offset %d", cnt,
- (cnt == 1) ? "" : "s", ofs);
-
if (bc != 0) {
/* file data */
offset = dissect_file_data(tvb, pinfo, tree, offset, bc, bc);