summaryrefslogtreecommitdiff
path: root/capture_ifinfo.h
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 /capture_ifinfo.h
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 'capture_ifinfo.h')
-rw-r--r--capture_ifinfo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/capture_ifinfo.h b/capture_ifinfo.h
index ba97650744..e0cec1db7f 100644
--- a/capture_ifinfo.h
+++ b/capture_ifinfo.h
@@ -74,7 +74,7 @@ void free_interface_list(GList *if_list);
typedef struct {
gboolean can_set_rfmon; /* TRUE if can be put into monitor mode */
GList *data_link_types; /* GList of data_link_info_t's */
-} if_caps_t;
+} if_capabilities_t;
/*
* Information about data link types.
@@ -88,11 +88,11 @@ typedef struct {
/**
* Fetch the linktype list for the specified interface from a child process.
*/
-extern if_caps_t *
+extern if_capabilities_t *
capture_get_if_capabilities(const char *devname, gboolean monitor_mode,
char **err_str);
-void free_if_capabilities(if_caps_t *caps);
+void free_if_capabilities(if_capabilities_t *caps);
#endif /* HAVE_LIBPCAP */