From: David F. Skoll Date: Wed, 6 Mar 2002 15:00:30 +0000 (+0000) Subject: Fixed incorrect order of args in option list (Frank Cusack) X-Git-Tag: ppp-2.4.7~435 X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=d0f67b16e65edb6281d409af01de4597cc045ee6;hp=a701a7c75e08d35757fbf531d2449236dceb6f03 Fixed incorrect order of args in option list (Frank Cusack) --- diff --git a/pppd/ccp.c b/pppd/ccp.c index ab1c5bd..6cbdafd 100644 --- a/pppd/ccp.c +++ b/pppd/ccp.c @@ -25,7 +25,7 @@ * OR MODIFICATIONS. */ -#define RCSID "$Id: ccp.c,v 1.32 2001/03/08 05:11:11 paulus Exp $" +#define RCSID "$Id: ccp.c,v 1.33 2002/03/06 15:00:30 dfs Exp $" #include #include @@ -85,7 +85,7 @@ static option_t ccp_option_list[] = { &ccp_allowoptions[0].deflate_draft }, { "predictor1", o_bool, &ccp_wantoptions[0].predictor_1, - "request Predictor-1", 1, &ccp_allowoptions[0].predictor_1, OPT_PRIO }, + "request Predictor-1", OPT_PRIO | 1 }, { "nopredictor1", o_bool, &ccp_wantoptions[0].predictor_1, "don't allow Predictor-1", OPT_PRIOSUB | OPT_A2CLR, &ccp_allowoptions[0].predictor_1 },