X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2Fpppd.h;h=493f86ef3d73e4b21c9f037dde0c9dcb84d61e5a;hb=186555a5b841b8ab00ca1ab2b33fdb50f5ac2d07;hp=1a5a10991325c97186f113dc7c60ab4be0f81e05;hpb=1aa145faffde86065d6ae1af4041d185c7733342;p=ppp.git diff --git a/pppd/pppd.h b/pppd/pppd.h index 1a5a109..493f86e 100644 --- a/pppd/pppd.h +++ b/pppd/pppd.h @@ -16,7 +16,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: pppd.h,v 1.72 2002/09/01 12:00:15 dfs Exp $ + * $Id: pppd.h,v 1.74 2002/09/24 11:35:22 fcusack Exp $ */ /* @@ -79,7 +79,7 @@ typedef struct { enum opt_type type; void *addr; char *description; - int flags; + unsigned int flags; void *addr2; int upper_limit; int lower_limit; @@ -120,7 +120,6 @@ typedef struct { #define OPT_A2PRINTER 0x10000000 /* *addr2 is a fn for printing option */ #define OPT_A2STRVAL 0x20000000 /* *addr2 points to current string value */ #define OPT_NOPRINT 0x40000000 /* don't print this option at all */ -#define OPT_A3OR 0x80000000 /* addr3 -> third location to rcv | value */ #define OPT_VAL(x) ((x) & OPT_VALUE)