summaryrefslogtreecommitdiff
path: root/capture_ifinfo.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2010-05-14 00:10:15 +0000
committerGuy Harris <guy@alum.mit.edu>2010-05-14 00:10:15 +0000
commit0e54136213952f9f947586ea183c11bdaf019f11 (patch)
tree7ac93a4feb6000a35fc68e8d12e738c6a69bdb5c /capture_ifinfo.c
parentdcf49bf092d57197e32862bb0aabe91f2a173fb8 (diff)
downloadwireshark-0e54136213952f9f947586ea183c11bdaf019f11.tar.gz
See whether the Leopard x86 buildbot is upset because of the name
if_capabilities_t - it doesn't fail on Snow Leopard, even if I undefine HAVE_PCAP_CREATE, and doesn't fail on the Leopard PPC buildbot, either. svn path=/trunk/; revision=32799
Diffstat (limited to 'capture_ifinfo.c')
-rw-r--r--capture_ifinfo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/capture_ifinfo.c b/capture_ifinfo.c
index e9fc5347a0..b5b8889599 100644
--- a/capture_ifinfo.c
+++ b/capture_ifinfo.c
@@ -155,11 +155,11 @@ capture_interface_list(int *err, char **err_str)
/* XXX - We parse simple text output to get our interface list. Should
* we use "real" data serialization instead, e.g. via XML? */
-if_capabilities_t *
+if_caps_t *
capture_get_if_capabilities(const gchar *ifname, gboolean monitor_mode,
char **err_str)
{
- if_capabilities_t *caps;
+ if_caps_t *caps;
GList *linktype_list = NULL;
int err, i;
gchar *msg;