aboutsummaryrefslogtreecommitdiffstats
path: root/tap-protocolinfo.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2006-11-24 18:25:23 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2006-11-24 18:25:23 +0000
commit241a6488a7d3e2bf5d81b61b7cd68a1cf3213ea4 (patch)
tree7896a15850a8f74e69b9426974b4759a0d50d584 /tap-protocolinfo.c
parent2014294eb3b9f6a46d772798558be9e5e22b6754 (diff)
Have separate proto_construct_match_selected_string() and
proto_can_match_selected() routines, to more clearly separate the two functions - but have them both call the same underlying routine, so they both make the same decisions as to whether a match-selected string can be constructed or not. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19976 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tap-protocolinfo.c')
-rw-r--r--tap-protocolinfo.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tap-protocolinfo.c b/tap-protocolinfo.c
index 0c9f8fbfc4..dfaea88099 100644
--- a/tap-protocolinfo.c
+++ b/tap-protocolinfo.c
@@ -76,7 +76,8 @@ protocolinfo_packet(void *prs, packet_info *pinfo, epan_dissect_t *edt, const vo
}
for(i=0;i<gp->len;i++){
- if(proto_construct_match_selected_string(gp->pdata[i], NULL, &str)){
+ str=proto_construct_match_selected_string(gp->pdata[i], NULL);
+ if(str){
col_append_fstr(pinfo->cinfo, COL_INFO, " %s",str);
}
}