summaryrefslogtreecommitdiff
path: root/gtk/prefs_capture.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2010-05-14 00:49:28 +0000
committerGuy Harris <guy@alum.mit.edu>2010-05-14 00:49:28 +0000
commit9307251bb8568c33b29a93b13fabcdaf8c7a1fe4 (patch)
tree35495254cbc613ccc58ffc8ace983f08b672d95d /gtk/prefs_capture.c
parent68ee036bd2197011eeea8c1e516891f273966dc8 (diff)
downloadwireshark-9307251bb8568c33b29a93b13fabcdaf8c7a1fe4.tar.gz
Um, no, the problem with the Leopard x86 build is that we first do a
build without libpcap, to make sure that works, and then do a build with libpcap, to put into a binary release. It's the former that's failing; I'll back out the previous change and then work on that. svn path=/trunk/; revision=32801
Diffstat (limited to 'gtk/prefs_capture.c')
-rw-r--r--gtk/prefs_capture.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/prefs_capture.c b/gtk/prefs_capture.c
index 8114a8113d..6debfe3ae9 100644
--- a/gtk/prefs_capture.c
+++ b/gtk/prefs_capture.c
@@ -598,7 +598,7 @@ ifopts_edit_destroy_cb(GtkWidget *win, gpointer data _U_)
static gint
ifopts_description_to_val (const char *if_name, const char *descr)
{
- if_caps_t *caps;
+ if_capabilities_t *caps;
int dlt = -1;
caps = capture_get_if_capabilities(if_name, FALSE, NULL);
@@ -640,7 +640,7 @@ ifopts_edit_ifsel_cb(GtkTreeSelection *selection _U_,
gchar *desc, *comment, *text;
gchar *if_name, *linktype;
gboolean hide;
- if_caps_t *caps;
+ if_capabilities_t *caps;
gint selected = 0;
/* Get list_store data for currently selected interface */
@@ -841,7 +841,7 @@ ifopts_options_add(GtkListStore *list_store, if_info_t *if_info)
gchar *desc;
gchar *pr_descr;
gchar *text[] = { NULL, NULL, NULL, NULL };
- if_caps_t *caps;
+ if_capabilities_t *caps;
gint linktype;
gboolean hide;
GtkTreeIter iter;