Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/sys/net Pull up revision 1.11 (requested by fvdl):



details:   https://anonhg.NetBSD.org/src/rev/906dfbc76b73
branches:  netbsd-1-5
changeset: 492979:906dfbc76b73
user:      he <he%NetBSD.org@localhost>
date:      Wed Mar 20 23:32:56 2002 +0000

description:
Pull up revision 1.11 (requested by fvdl):
  Fix a problem related to compression which would cause a lot of
  logged incorrect warnings.

diffstat:

 sys/net/ppp-deflate.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 31afa8de0d93 -r 906dfbc76b73 sys/net/ppp-deflate.c
--- a/sys/net/ppp-deflate.c     Wed Mar 20 23:21:53 2002 +0000
+++ b/sys/net/ppp-deflate.c     Wed Mar 20 23:32:56 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ppp-deflate.c,v 1.6 1998/05/02 14:34:25 christos Exp $ */
+/*     $NetBSD: ppp-deflate.c,v 1.6.24.1 2002/03/20 23:32:56 he Exp $  */
 /*     Id: ppp-deflate.c,v 1.5 1997/03/04 03:33:28 paulus Exp  */
 
 /*
@@ -542,7 +542,7 @@
     state->strm.next_out = wptr + 3;
     state->strm.avail_out = 1;
     decode_proto = 1;
-    olen = PPP_HDRLEN;
+    olen = 0;
 
     /*
      * Call inflate, supplying more input or output as needed.



Home | Main Index | Thread Index | Old Index