aboutsummaryrefslogtreecommitdiffstats
path: root/packet-asap.c
diff options
context:
space:
mode:
authortuexen <tuexen@f5534014-38df-0310-8fa8-9805f1628bb7>2003-04-19 20:14:35 +0000
committertuexen <tuexen@f5534014-38df-0310-8fa8-9805f1628bb7>2003-04-19 20:14:35 +0000
commitf9e26c61220d1f4deab9c4e7dcc01f482a4771bb (patch)
treeb2bd323127c9445d3aa9d76d79720a296dcf1f7a /packet-asap.c
parentc47512d7e8abac2374b7ba649c77428da51d9ebb (diff)
- added better handling of the INFO column using col_set_fence.
- changed my e-mail. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7503 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-asap.c')
-rw-r--r--packet-asap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-asap.c b/packet-asap.c
index 68efeed5e3..66e0bb1037 100644
--- a/packet-asap.c
+++ b/packet-asap.c
@@ -4,9 +4,9 @@
* http://www.ietf.org/internet-drafts/draft-ietf-rserpool-common-param-02.txt
* http://www.ietf.org/internet-drafts/draft-ietf-rserpool-asap-05.txt
*
- * Copyright 2002, Michael Tuexen <Michael.Tuexen@siemens.com>
+ * Copyright 2002, Michael Tuexen <tuexen [AT] fh-muenster.de>
*
- * $Id: packet-asap.c,v 1.8 2003/01/20 22:49:36 tuexen Exp $
+ * $Id: packet-asap.c,v 1.9 2003/04/19 20:14:35 tuexen Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -539,8 +539,8 @@ dissect_asap_message(tvbuff_t *message_tvb, packet_info *pinfo, proto_tree *asap
tvbuff_t *parameters_tvb;
if (check_col(pinfo->cinfo, COL_INFO)) {
- col_append_str(pinfo->cinfo, COL_INFO, val_to_str(tvb_get_guint8(message_tvb, MESSAGE_TYPE_OFFSET), message_type_values, "Unknown ASAP type"));
- col_append_str(pinfo->cinfo, COL_INFO, " ");
+ col_add_fstr(pinfo->cinfo, COL_INFO, "%s ", val_to_str(tvb_get_guint8(message_tvb, MESSAGE_TYPE_OFFSET), message_type_values, "Unknown ASAP type"));
+ col_set_fence(pinfo->cinfo, COL_INFO);
}
if (asap_tree) {
proto_tree_add_item(asap_tree, hf_message_type, message_tvb, MESSAGE_TYPE_OFFSET, MESSAGE_TYPE_LENGTH, NETWORK_BYTE_ORDER);