Module Name:    src
Committed By:   dholland
Date:           Sat Jul 31 21:21:17 UTC 2010

Modified Files:
        src/dist/pppd/pppd: ccp.h

Log Message:
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.2 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.2
--- src/dist/pppd/pppd/ccp.h:1.1.1.1	Sun Feb 20 10:28:37 2005
+++ src/dist/pppd/pppd/ccp.h	Sat Jul 31 21:21:17 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.2 2010/07/31 21:21:17 dholland 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