aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/voip_calls.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2006-06-01 20:19:51 +0000
committerAnders Broman <anders.broman@ericsson.com>2006-06-01 20:19:51 +0000
commit6471c00a5504739d4809027864c08adaa24b6e13 (patch)
treef6931280d5572a1f5a5c5350c31819487655d182 /gtk/voip_calls.c
parent6a14b9a3832bdbfd0591c07734c12d9f8001c57d (diff)
From Cvetan Ivanov:
H225.cnf I noticed is that the voip call flow graph does not have a label for the setupAck packet. I traced this to the empty frame_label. voip_calls.c It seems to me that in gtk/voip_calls.c tmp_h323info->guid is pointer itself, therefore: memcmp(&tmp_h323info->guid should in fact read: memcmp(tmp_h323info->guid svn path=/trunk/; revision=18304
Diffstat (limited to 'gtk/voip_calls.c')
-rw-r--r--gtk/voip_calls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/voip_calls.c b/gtk/voip_calls.c
index cbf06e795e..50933f64c6 100644
--- a/gtk/voip_calls.c
+++ b/gtk/voip_calls.c
@@ -1698,7 +1698,7 @@ H225calls_packet(void *ptr _U_, packet_info *pinfo, epan_dissect_t *edt _U_, con
tmp_listinfo=list->data;
if (tmp_listinfo->protocol == VOIP_H323){
tmp_h323info = tmp_listinfo->prot_info;
- if ( (memcmp(&tmp_h323info->guid, &guid_allzero, GUID_LEN) != 0) && (memcmp(&tmp_h323info->guid, &pi->guid,GUID_LEN)==0) ){
+ if ( (memcmp(tmp_h323info->guid, &guid_allzero, GUID_LEN) != 0) && (memcmp(&tmp_h323info->guid, &pi->guid,GUID_LEN)==0) ){
strinfo = (voip_calls_info_t*)(list->data);
break;
}