diff options
author | Dmitry Kozlov <xeb@mail.ru> | 2016-11-28 14:40:30 +0300 |
---|---|---|
committer | Dmitry Kozlov <xeb@mail.ru> | 2016-11-28 14:40:30 +0300 |
commit | caa03320491d741b2c954f4934f7a40dbe6e2ab9 (patch) | |
tree | 45ec91d8c7309afdb7b265e1e2884b6108740dae /accel-pppd/ctrl | |
parent | 696c7fcbea013a66fa21136ec0a67146fdde3bae (diff) | |
download | accel-ppp-caa03320491d741b2c954f4934f7a40dbe6e2ab9.tar.gz accel-ppp-caa03320491d741b2c954f4934f7a40dbe6e2ab9.zip |
ipoe: fixed typo (incorrect assignment)
Diffstat (limited to 'accel-pppd/ctrl')
-rw-r--r-- | accel-pppd/ctrl/ipoe/ipoe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel-pppd/ctrl/ipoe/ipoe.c b/accel-pppd/ctrl/ipoe/ipoe.c index e26868b9..0231678a 100644 --- a/accel-pppd/ctrl/ipoe/ipoe.c +++ b/accel-pppd/ctrl/ipoe/ipoe.c @@ -814,7 +814,7 @@ static void __ipoe_session_start(struct ipoe_session *ses) ses->router = ses->serv->opt_src; if (!ses->router) - ses->siaddr = iproute_get(ses->yiaddr, NULL); + ses->router = iproute_get(ses->yiaddr, NULL); if (!ses->router) { log_ppp_error("can't determine router address\n"); |