From 269b45f48ae15bd0132fb5612c931cad228297fe Mon Sep 17 00:00:00 2001 From: Jaap Keuter Date: Thu, 8 Jan 2009 07:32:22 +0000 Subject: Fix for bug 2902: Make sure to check the right column before writing to it, and vice versa. svn path=/trunk/; revision=27191 --- epan/dissectors/packet-vj.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'epan/dissectors/packet-vj.c') diff --git a/epan/dissectors/packet-vj.c b/epan/dissectors/packet-vj.c index 9e600a6067..957829af62 100644 --- a/epan/dissectors/packet-vj.c +++ b/epan/dissectors/packet-vj.c @@ -225,7 +225,7 @@ dissect_vjuc(tvbuff_t *tvb, packet_info *pinfo, proto_tree * tree) gint ipsize; if(check_col(pinfo->cinfo, COL_PROTOCOL)) - col_set_str(pinfo->cinfo, COL_INFO, "PPP VJ"); + col_set_str(pinfo->cinfo, COL_PROTOCOL, "PPP VJ"); if(tree != NULL) { ti = proto_tree_add_protocol_format(tree, proto_vj, tvb, 0, -1, @@ -407,7 +407,7 @@ dissect_vjc(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) gint err = VJ_ERROR; if(check_col(pinfo->cinfo, COL_PROTOCOL)) - col_set_str(pinfo->cinfo, COL_INFO, "PPP VJ"); + col_set_str(pinfo->cinfo, COL_PROTOCOL, "PPP VJ"); if(tree != NULL) { ti = proto_tree_add_protocol_format(tree, proto_vj, tvb, 0, -1, -- cgit v1.2.3