diff options
-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; |