diff options
author | Guy Harris <guy@alum.mit.edu> | 2010-05-14 00:10:15 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2010-05-14 00:10:15 +0000 |
commit | 0e54136213952f9f947586ea183c11bdaf019f11 (patch) | |
tree | 7ac93a4feb6000a35fc68e8d12e738c6a69bdb5c /capture_ifinfo.h | |
parent | dcf49bf092d57197e32862bb0aabe91f2a173fb8 (diff) | |
download | wireshark-0e54136213952f9f947586ea183c11bdaf019f11.tar.gz wireshark-0e54136213952f9f947586ea183c11bdaf019f11.tar.bz2 wireshark-0e54136213952f9f947586ea183c11bdaf019f11.zip |
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.h')
-rw-r--r-- | capture_ifinfo.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/capture_ifinfo.h b/capture_ifinfo.h index e0cec1db7f..ba97650744 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_capabilities_t; +} if_caps_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_capabilities_t * +extern if_caps_t * capture_get_if_capabilities(const char *devname, gboolean monitor_mode, char **err_str); -void free_if_capabilities(if_capabilities_t *caps); +void free_if_capabilities(if_caps_t *caps); #endif /* HAVE_LIBPCAP */ |