aboutsummaryrefslogtreecommitdiffstats
path: root/capture_ifinfo.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2010-05-14 00:49:28 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2010-05-14 00:49:28 +0000
commit873843560feb5ac3fda182f13a3d58eb71f33f51 (patch)
tree35495254cbc613ccc58ffc8ace983f08b672d95d /capture_ifinfo.h
parentf9633adfdac581d4981eaad8eadcb15e0e053212 (diff)
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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32801 f5534014-38df-0310-8fa8-9805f1628bb7
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 */