diff options
| author | Brian Somers <brian@FreeBSD.org> | 1998-07-11 19:05:24 +0000 |
|---|---|---|
| committer | Brian Somers <brian@FreeBSD.org> | 1998-07-11 19:05:24 +0000 |
| commit | 7d797fa7800452227f13a9180d8896dba0c63f03 (patch) | |
| tree | 89802054ca60d07cb2418f17a1c988998381263c | |
| parent | 8e3986ea3696cf3ec8fddbb5ceb8685642200d0e (diff) | |
Notes
| -rw-r--r-- | usr.sbin/ppp/ip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/ip.c b/usr.sbin/ppp/ip.c index 393788bac9c0..55e0a59ad95d 100644 --- a/usr.sbin/ppp/ip.c +++ b/usr.sbin/ppp/ip.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: ip.c,v 1.47 1998/06/27 14:18:05 brian Exp $ + * $Id: ip.c,v 1.48 1998/06/27 23:48:45 brian Exp $ * * TODO: * o Return ICMP message for filterd packet @@ -532,9 +532,9 @@ ip_FlushPacket(struct link *l, struct bundle *bundle) struct ip *pip = (struct ip *)MBUF_CTOP(bp); cnt = mbuf_Length(bp); - vj_SendFrame(l, bp, bundle); if (!(FilterCheck(pip, &bundle->filter.alive) & A_DENY)) bundle_StartIdleTimer(bundle); + vj_SendFrame(l, bp, bundle); ipcp_AddOutOctets(&bundle->ncp.ipcp, cnt); return 1; } |
