aboutsummaryrefslogtreecommitdiffstats
path: root/pcap-util.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-09-10 06:47:04 +0000
committerGuy Harris <guy@alum.mit.edu>2003-09-10 06:47:04 +0000
commitb657bea8706bf0e992d0488643edd26c34f10f7e (patch)
tree91321fb601824f236ab68b3608b59ab64d85682b /pcap-util.c
parent27ea7816ee9c4613a4272ee6ddadb65a02a8233b (diff)
Fix a compile error on Windows.
svn path=/trunk/; revision=8441
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 {