diff options
Diffstat (limited to 'nest')
-rw-r--r-- | nest/iface.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/nest/iface.c b/nest/iface.c index 9462b634..23a82ac5 100644 --- a/nest/iface.c +++ b/nest/iface.c @@ -449,7 +449,7 @@ if_find_by_name(char *name) struct iface *i; WALK_LIST(i, iface_list) - if (!strcmp(i->name, name)) + if (!strcmp(i->name, name) && !(i->flags & IF_SHUTDOWN)) return i; return NULL; } @@ -459,8 +459,9 @@ if_get_by_name(char *name) { struct iface *i; - if (i = if_find_by_name(name)) - return i; + WALK_LIST(i, iface_list) + if (!strcmp(i->name, name)) + return i; /* No active iface, create a dummy */ i = mb_allocz(if_pool, sizeof(struct iface)); |