diff options
author | Guy Harris <guy@alum.mit.edu> | 2010-05-14 00:49:28 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2010-05-14 00:49:28 +0000 |
commit | 9307251bb8568c33b29a93b13fabcdaf8c7a1fe4 (patch) | |
tree | 35495254cbc613ccc58ffc8ace983f08b672d95d /capture_ifinfo.c | |
parent | 68ee036bd2197011eeea8c1e516891f273966dc8 (diff) | |
download | wireshark-9307251bb8568c33b29a93b13fabcdaf8c7a1fe4.tar.gz wireshark-9307251bb8568c33b29a93b13fabcdaf8c7a1fe4.tar.bz2 wireshark-9307251bb8568c33b29a93b13fabcdaf8c7a1fe4.zip |
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.c')
-rw-r--r-- | capture_ifinfo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/capture_ifinfo.c b/capture_ifinfo.c index b5b8889599..e9fc5347a0 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_caps_t * +if_capabilities_t * capture_get_if_capabilities(const gchar *ifname, gboolean monitor_mode, char **err_str) { - if_caps_t *caps; + if_capabilities_t *caps; GList *linktype_list = NULL; int err, i; gchar *msg; |