diff options
| author | Brian Somers <brian@FreeBSD.org> | 1999-09-16 18:47:59 +0000 |
|---|---|---|
| committer | Brian Somers <brian@FreeBSD.org> | 1999-09-16 18:47:59 +0000 |
| commit | 4d9d17fe7db77482380403010aef75fdfbfdb773 (patch) | |
| tree | 297b80be7abfa4952af3481a0c1b96fed19e9b58 /usr.sbin/ppp/ip.c | |
| parent | 52a57daa0d2bb5f5adb92e6a04b5a1973738c6c3 (diff) | |
Notes
Diffstat (limited to 'usr.sbin/ppp/ip.c')
| -rw-r--r-- | usr.sbin/ppp/ip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/ppp/ip.c b/usr.sbin/ppp/ip.c index 6d8d8d80c096..f1219d000d12 100644 --- a/usr.sbin/ppp/ip.c +++ b/usr.sbin/ppp/ip.c @@ -121,7 +121,7 @@ FilterCheck(const struct ip *pip, const struct filter *filter) if (len < (24 >> 3)) /* don't allow fragment to over-write header */ return (1); /* permit fragments on in and out filter */ - return (filter->fragok); + return (!filter->fragok); } cproto = gotinfo = estab = syn = finrst = didname = 0; |
