diff options
| author | Julian Elischer <julian@FreeBSD.org> | 2000-12-18 13:41:46 +0000 |
|---|---|---|
| committer | Julian Elischer <julian@FreeBSD.org> | 2000-12-18 13:41:46 +0000 |
| commit | 5078fb0b2a8d0a6f49c1f0e6d9785f33bd7c1b91 (patch) | |
| tree | 774195758712dd9ec4e7eb6dca88904de7f46604 | |
| parent | a67036f740ae5cd97b4be083ce47eef1db297613 (diff) | |
Notes
| -rw-r--r-- | sys/netgraph/ng_pppoe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netgraph/ng_pppoe.c b/sys/netgraph/ng_pppoe.c index e41c80e2d0a18..af82ac0575436 100644 --- a/sys/netgraph/ng_pppoe.c +++ b/sys/netgraph/ng_pppoe.c @@ -788,7 +788,7 @@ AAA * for now just allow ONE service to be advertised. * If you do it twice you just overwrite. */ - if (sp->state |= PPPOE_PRIMED) { + if (sp->state != PPPOE_PRIMED) { printf("pppoe: Session not primed\n"); LEAVE(EISCONN); } |
