aboutsummaryrefslogtreecommitdiffstats
path: root/packet-isup.c
diff options
context:
space:
mode:
authortuexen <tuexen@f5534014-38df-0310-8fa8-9805f1628bb7>2003-04-19 20:13:23 +0000
committertuexen <tuexen@f5534014-38df-0310-8fa8-9805f1628bb7>2003-04-19 20:13:23 +0000
commitc47512d7e8abac2374b7ba649c77428da51d9ebb (patch)
tree5d3d9da0bcc8e54c690e1309b9b42d05d837c7d5 /packet-isup.c
parent59e95ac18b77891e239c973570b78e8d979a6260 (diff)
- add better INFO column handling using col_set_fence.
- change my e-mail. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7502 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-isup.c')
-rw-r--r--packet-isup.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-isup.c b/packet-isup.c
index 09ae385813..183b9b2f46 100644
--- a/packet-isup.c
+++ b/packet-isup.c
@@ -2,7 +2,7 @@
* Routines for ISUP dissection
* Copyright 2001, Martina Obermeier <martina.obermeier@icn.siemens.de>
*
- * $Id: packet-isup.c,v 1.20 2003/04/14 18:04:13 guy Exp $
+ * $Id: packet-isup.c,v 1.21 2003/04/19 20:13:22 tuexen Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -4038,8 +4038,8 @@ dissect_isup(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
message_type = tvb_get_guint8(tvb, CIC_OFFSET + CIC_LENGTH);
if (check_col(pinfo->cinfo, COL_INFO)){
- col_append_str(pinfo->cinfo, COL_INFO, val_to_str(message_type, isup_message_type_value_acro, "reserved"));
- col_append_str(pinfo->cinfo, COL_INFO, " ");
+ col_add_fstr(pinfo->cinfo, COL_INFO, "%s ", val_to_str(message_type, isup_message_type_value_acro, "reserved"));
+ col_set_fence(pinfo->cinfo, COL_INFO);
}
/* In the interest of speed, if "tree" is NULL, don't do any work not