diff options
author | Anders Broman <anders.broman@ericsson.com> | 2010-01-13 20:25:10 +0000 |
---|---|---|
committer | Anders Broman <anders.broman@ericsson.com> | 2010-01-13 20:25:10 +0000 |
commit | c4dd31cd8792c964cc6e0fa9bfc6ed03caa9aeb7 (patch) | |
tree | 3f74d12b3e1f71d1d0116091ca8cddf53479683a /plugins/docsis/packet-regrsp.c | |
parent | 37cb4333a449ef51fd9eab22b22713e4ba277f9b (diff) | |
download | wireshark-c4dd31cd8792c964cc6e0fa9bfc6ed03caa9aeb7.tar.gz wireshark-c4dd31cd8792c964cc6e0fa9bfc6ed03caa9aeb7.tar.bz2 wireshark-c4dd31cd8792c964cc6e0fa9bfc6ed03caa9aeb7.zip |
From Didier Gautheron:
col_clear.diff
Remove calls to col_clear :
- called twice.
- before functions which also clear the column
- by replacing col_clear + col_append_xxx with col_add_xxx
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4394
svn path=/trunk/; revision=31517
Diffstat (limited to 'plugins/docsis/packet-regrsp.c')
-rw-r--r-- | plugins/docsis/packet-regrsp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/docsis/packet-regrsp.c b/plugins/docsis/packet-regrsp.c index e647c79816..b98636293c 100644 --- a/plugins/docsis/packet-regrsp.c +++ b/plugins/docsis/packet-regrsp.c @@ -59,7 +59,6 @@ dissect_regrsp (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree) if (check_col (pinfo->cinfo, COL_INFO)) { - col_clear (pinfo->cinfo, COL_INFO); col_add_fstr (pinfo->cinfo, COL_INFO, "Registration Response SID = %u (%s)", sid, val_to_str (response, docsis_conf_code, "%s")); |