summaryrefslogtreecommitdiff
path: root/accel-pppd
diff options
context:
space:
mode:
authorDmitry Kozlov <xeb@mail.ru>2014-01-19 20:58:34 +0400
committerDmitry Kozlov <xeb@mail.ru>2014-01-19 20:58:34 +0400
commit2ee198430cfc5c6cbf99b5110ebd212d64f22ef0 (patch)
tree25637e5eb7c7b1e96d910b8d2b44605fd287bdb2 /accel-pppd
parentbf4aad6aeb3e2f150b642f29881b8de691038ac2 (diff)
downloadaccel-ppp-xebd-2ee198430cfc5c6cbf99b5110ebd212d64f22ef0.tar.gz
accel-ppp-xebd-2ee198430cfc5c6cbf99b5110ebd212d64f22ef0.zip
pppoe: fix typo
Signed-off-by: Dmitry Kozlov <xeb@mail.ru>
Diffstat (limited to 'accel-pppd')
-rw-r--r--accel-pppd/ctrl/pppoe/tr101.c2
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;
}