aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk
diff options
context:
space:
mode:
authorMartin Kaiser <wireshark@kaiser.cx>2013-12-24 13:44:00 +0000
committerMartin Kaiser <wireshark@kaiser.cx>2013-12-24 13:44:00 +0000
commitfba61a31becc8be0789fbb5376c1fe909b9cfa4f (patch)
treebd2a02d611953efa566c0b415e044bd8eb458bcc /ui/gtk
parent7708c2a19f6f7b1861b7c7280ac813afef8a6220 (diff)
add ssl detection to proto_get_frame_protocols()
svn path=/trunk/; revision=54439
Diffstat (limited to 'ui/gtk')
-rw-r--r--ui/gtk/follow_tcp.c2
-rw-r--r--ui/gtk/follow_udp.c2
-rw-r--r--ui/gtk/main_menubar.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/ui/gtk/follow_tcp.c b/ui/gtk/follow_tcp.c
index 1e62085f16..8145d31db7 100644
--- a/ui/gtk/follow_tcp.c
+++ b/ui/gtk/follow_tcp.c
@@ -107,7 +107,7 @@ follow_tcp_stream_cb(GtkWidget * w _U_, gpointer data _U_)
char stream_window_title[256];
gboolean is_tcp = FALSE;
- proto_get_frame_protocols(cfile.edt->pi.layers, NULL, &is_tcp, NULL, NULL);
+ proto_get_frame_protocols(cfile.edt->pi.layers, NULL, &is_tcp, NULL, NULL, NULL);
if (!is_tcp) {
simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
diff --git a/ui/gtk/follow_udp.c b/ui/gtk/follow_udp.c
index 3ba4348845..8e5ff492f6 100644
--- a/ui/gtk/follow_udp.c
+++ b/ui/gtk/follow_udp.c
@@ -96,7 +96,7 @@ follow_udp_stream_cb(GtkWidget *w _U_, gpointer data _U_)
GString *msg;
gboolean is_udp = FALSE;
- proto_get_frame_protocols(cfile.edt->pi.layers, NULL, NULL, &is_udp, NULL);
+ proto_get_frame_protocols(cfile.edt->pi.layers, NULL, NULL, &is_udp, NULL, NULL);
if (!is_udp) {
simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
diff --git a/ui/gtk/main_menubar.c b/ui/gtk/main_menubar.c
index 559d368338..e8b119e3b8 100644
--- a/ui/gtk/main_menubar.c
+++ b/ui/gtk/main_menubar.c
@@ -192,7 +192,7 @@ build_conversation_filter(int action, gboolean show_dialog)
char *buf;
gboolean is_ip = FALSE, is_tcp = FALSE, is_udp = FALSE;
- proto_get_frame_protocols(pi->layers, &is_ip, &is_tcp, &is_udp, NULL);
+ proto_get_frame_protocols(pi->layers, &is_ip, &is_tcp, &is_udp, NULL, NULL);
switch(action) {
case(CONV_CBA):