diff options
author | Kozlov Dmitry <xeb@mail.ru> | 2012-07-11 16:10:31 +0400 |
---|---|---|
committer | Kozlov Dmitry <xeb@mail.ru> | 2012-07-11 16:10:31 +0400 |
commit | db98faab0495c752f3318ae8b7c7c6515c3ff1a8 (patch) | |
tree | 6e292e2a0c2106347f3b0d9669f1e945caf7a657 | |
parent | 641e9de3e2ccbd7607ffb90e258c02635fe2616b (diff) | |
download | accel-ppp-db98faab0495c752f3318ae8b7c7c6515c3ff1a8.tar.gz accel-ppp-db98faab0495c752f3318ae8b7c7c6515c3ff1a8.zip |
ipoe: fix multiple interface loading
-rw-r--r-- | accel-pppd/ctrl/ipoe/ipoe.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/accel-pppd/ctrl/ipoe/ipoe.c b/accel-pppd/ctrl/ipoe/ipoe.c index 2f9cf12..a24ce94 100644 --- a/accel-pppd/ctrl/ipoe/ipoe.c +++ b/accel-pppd/ctrl/ipoe/ipoe.c @@ -655,6 +655,8 @@ void ipoe_recv_up(int ifindex, struct ethhdr *eth, struct iphdr *iph) pthread_mutex_unlock(&serv->lock); ipoe_session_create_up(serv, eth, iph); + + break; } } @@ -793,7 +795,7 @@ static void add_interface(const char *ifname, int ifindex, const char *opt) } list_for_each_entry(serv, &serv_list, entry) { - if (!strcmp(ifname, serv->ifname)) + if (strcmp(ifname, serv->ifname)) continue; serv->active = 1; @@ -876,7 +878,7 @@ static int __load_interface_re(int index, int flags, const char *name, struct ip { if (pcre_exec(arg->re, NULL, name, strlen(name), 0, 0, NULL, 0) < 0) return 0; - + add_interface(name, index, arg->opt); return 0; |