aboutsummaryrefslogtreecommitdiffstats
path: root/pcap-util.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-09-10 06:47:04 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-09-10 06:47:04 +0000
commit860c2a1a2c951dd96bee07726df1bf4622890ceb (patch)
tree91321fb601824f236ab68b3608b59ab64d85682b /pcap-util.c
parent8ca47bf6e784e29ddd25e2577c34ab2cefab108f (diff)
Fix a compile error on Windows.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8441 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'pcap-util.c')
-rw-r--r--pcap-util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pcap-util.c b/pcap-util.c
index f059086efc..183de4e567 100644
--- a/pcap-util.c
+++ b/pcap-util.c
@@ -1,7 +1,7 @@
/* pcap-util.c
* Utility routines for packet capture
*
- * $Id: pcap-util.c,v 1.16 2003/09/10 05:35:23 guy Exp $
+ * $Id: pcap-util.c,v 1.17 2003/09/10 06:47:04 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -503,7 +503,7 @@ get_interface_list(int *err, char *err_str) {
ascii_name[j] = '\0';
i++;
il = g_list_append(il,
- if_info_new(ascii_name, ascii_description));
+ if_info_new(ascii_name, ascii_desc));
}
}
else {