aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-vj.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2009-01-08 07:32:22 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2009-01-08 07:32:22 +0000
commit269b45f48ae15bd0132fb5612c931cad228297fe (patch)
treedee1a7ecf46acc3b7b046e8521f8d05587ec38b2 /epan/dissectors/packet-vj.c
parent60c6bbcdc2eb2ec5bc34b7ffa2c870290861f388 (diff)
Fix for bug 2902:
Make sure to check the right column before writing to it, and vice versa. svn path=/trunk/; revision=27191
Diffstat (limited to 'epan/dissectors/packet-vj.c')
-rw-r--r--epan/dissectors/packet-vj.c4
1 files changed, 2 insertions, 2 deletions
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,