diff options
author | Dmitry Kozlov <xeb@mail.ru> | 2014-01-19 20:58:34 +0400 |
---|---|---|
committer | Dmitry Kozlov <xeb@mail.ru> | 2014-01-19 20:58:34 +0400 |
commit | 2ee198430cfc5c6cbf99b5110ebd212d64f22ef0 (patch) | |
tree | 25637e5eb7c7b1e96d910b8d2b44605fd287bdb2 | |
parent | bf4aad6aeb3e2f150b642f29881b8de691038ac2 (diff) | |
download | accel-ppp-xebd-2ee198430cfc5c6cbf99b5110ebd212d64f22ef0.tar.gz accel-ppp-xebd-2ee198430cfc5c6cbf99b5110ebd212d64f22ef0.zip |
pppoe: fix typo
Signed-off-by: Dmitry Kozlov <xeb@mail.ru>
-rw-r--r-- | accel-pppd/ctrl/pppoe/tr101.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel-pppd/ctrl/pppoe/tr101.c b/accel-pppd/ctrl/pppoe/tr101.c index e91b9cf..bb8b845 100644 --- a/accel-pppd/ctrl/pppoe/tr101.c +++ b/accel-pppd/ctrl/pppoe/tr101.c @@ -51,7 +51,7 @@ static int tr101_send_request(struct pppoe_tag *tr101, struct rad_packet_t *pack * which excludes attributes 0x85 to 0x90. * Here, we follow the TR-101 guidelines. */ - if (type && id >= 0x85 && id =< 0x90) { + if (type && id >= 0x85 && id <= 0x90) { ptr += len; continue; } |