diff options
author | Rob Landley <rob@landley.net> | 2006-03-22 16:59:12 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-03-22 16:59:12 +0000 |
commit | a35886c86299bbf670d5c6a04284da5be1b62a57 (patch) | |
tree | 9efb4b6e955a06945fb003f2ff4ab0257a0fa6fe | |
parent | 786988faf7ac9ca384ed4d6ee1095e242c67dc8a (diff) | |
download | busybox-w32-a35886c86299bbf670d5c6a04284da5be1b62a57.tar.gz busybox-w32-a35886c86299bbf670d5c6a04284da5be1b62a57.tar.bz2 busybox-w32-a35886c86299bbf670d5c6a04284da5be1b62a57.zip |
Fix from Glenn McGrath.
-rw-r--r-- | networking/ifupdown.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ifupdown.c b/networking/ifupdown.c index c3cfcd8b3..d4167e9a0 100644 --- a/networking/ifupdown.c +++ b/networking/ifupdown.c | |||
@@ -769,7 +769,7 @@ static struct interfaces_file_t *read_interfaces(const char *filename) | |||
769 | llist_t *iface_list; | 769 | llist_t *iface_list; |
770 | for (iface_list = defn->ifaces; iface_list; iface_list = iface_list->link) { | 770 | for (iface_list = defn->ifaces; iface_list; iface_list = iface_list->link) { |
771 | struct interface_defn_t *tmp = (struct interface_defn_t *) iface_list->data; | 771 | struct interface_defn_t *tmp = (struct interface_defn_t *) iface_list->data; |
772 | if ((strcmp(tmp->iface, currif->iface) == 0) || | 772 | if ((strcmp(tmp->iface, currif->iface) == 0) && |
773 | (tmp->address_family == currif->address_family)) { | 773 | (tmp->address_family == currif->address_family)) { |
774 | bb_error_msg("duplicate interface \"%s\"", tmp->iface); | 774 | bb_error_msg("duplicate interface \"%s\"", tmp->iface); |
775 | return NULL; | 775 | return NULL; |