aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/voip_calls_dlg.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2010-09-22 16:35:02 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2010-09-22 16:35:02 +0000
commite4b94c0d8f12254475dee69ba991c4d1f49a5b15 (patch)
tree5b662892e5d22ff3211bdc6cd07eddc0f39d4cd5 /gtk/voip_calls_dlg.c
parent4a1b96873817a4052bd887c70a9fd846d7c33054 (diff)
downloadwireshark-e4b94c0d8f12254475dee69ba991c4d1f49a5b15.tar.gz
wireshark-e4b94c0d8f12254475dee69ba991c4d1f49a5b15.tar.bz2
wireshark-e4b94c0d8f12254475dee69ba991c4d1f49a5b15.zip
Fix for bug 5172:
Properly retrieve the H.245 endpoint IP address. svn path=/trunk/; revision=34184
Diffstat (limited to 'gtk/voip_calls_dlg.c')
-rw-r--r--gtk/voip_calls_dlg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/voip_calls_dlg.c b/gtk/voip_calls_dlg.c
index 9bde14f870..b5f4b2db3f 100644
--- a/gtk/voip_calls_dlg.c
+++ b/gtk/voip_calls_dlg.c
@@ -279,7 +279,7 @@ voip_calls_on_filter(GtkButton *button _U_, gpointer user_data _U_)
h245_add = listb->data;
g_string_append_printf(filter_string_fwd,
" || (ip.addr == %s && tcp.port == %d && h245)",
- ip_to_str((guint8 *)&(h245_add->h245_address)), h245_add->h245_port);
+ ip_to_str((guint8 *)(h245_add->h245_address.data)), h245_add->h245_port);
listb = g_list_next(listb);
}
g_string_append_printf(filter_string_fwd, ")");