Module Name:    src
Committed By:   riz
Date:           Sun Nov 21 22:09:32 UTC 2010

Modified Files:
        src/dist/pppd/pppd [netbsd-5]: ccp.h

Log Message:
Pull up following revision(s) (requested by dholland in ticket #1469):
        dist/pppd/pppd/ccp.h: revision 1.2
Don't attempt to store bitmasks in a variable of type 'bool'.
>From Shuichiro URATA in PR 42390. Should be pulled up to -5.


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.1.1.1.32.1 src/dist/pppd/pppd/ccp.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/dist/pppd/pppd/ccp.h
diff -u src/dist/pppd/pppd/ccp.h:1.1.1.1 src/dist/pppd/pppd/ccp.h:1.1.1.1.32.1
--- src/dist/pppd/pppd/ccp.h:1.1.1.1	Sun Feb 20 10:28:37 2005
+++ src/dist/pppd/pppd/ccp.h	Sun Nov 21 22:09:32 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: ccp.h,v 1.1.1.1 2005/02/20 10:28:37 cube Exp $	*/
+/*	$NetBSD: ccp.h,v 1.1.1.1.32.1 2010/11/21 22:09:32 riz Exp $	*/
 
 /*
  * ccp.h - Definitions for PPP Compression Control Protocol.
@@ -39,7 +39,7 @@
     bool predictor_2;		/* do Predictor-2? */
     bool deflate_correct;	/* use correct code for deflate? */
     bool deflate_draft;		/* use draft RFC code for deflate? */
-    bool mppe;			/* do MPPE? */
+    u_short mppe;		/* do MPPE? */
     u_short bsd_bits;		/* # bits/code for BSD Compress */
     u_short deflate_size;	/* lg(window size) for Deflate */
     short method;		/* code for chosen compression method */

Reply via email to