From d022609f9d30bbde0dd46b02f86d17a7f426ce26 Mon Sep 17 00:00:00 2001 From: Paul Mackerras Date: Sun, 15 Sep 2002 12:51:05 +0000 Subject: [PATCH] Get rid of a couple of unnecessary OPT_A2COPYs and one wrong one. The chap options still need fixing. --- pppd/auth.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pppd/auth.c b/pppd/auth.c index ec4057d..1858a06 100644 --- a/pppd/auth.c +++ b/pppd/auth.c @@ -32,7 +32,7 @@ * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ -#define RCSID "$Id: auth.c,v 1.82 2002/09/12 22:38:47 paulus Exp $" +#define RCSID "$Id: auth.c,v 1.83 2002/09/15 12:51:05 paulus Exp $" #include #include @@ -228,14 +228,14 @@ option_t auth_options[] = { { "auth", o_bool, &auth_required, "Require authentication from peer", OPT_PRIO | 1 }, { "noauth", o_bool, &auth_required, - "Don't require peer to authenticate", OPT_PRIOSUB | OPT_PRIV | OPT_A2COPY, + "Don't require peer to authenticate", OPT_PRIOSUB | OPT_PRIV, &allow_any_ip }, { "require-pap", o_bool, &lcp_wantoptions[0].neg_upap, "Require PAP authentication from peer", - OPT_PRIOSUB | OPT_A2COPY | 1, &auth_required }, + OPT_PRIOSUB | 1, &auth_required }, { "+pap", o_bool, &lcp_wantoptions[0].neg_upap, "Require PAP authentication from peer", - OPT_ALIAS | OPT_PRIOSUB | OPT_A2COPY | 1, &auth_required }, + OPT_ALIAS | OPT_PRIOSUB | 1, &auth_required }, { "require-chap", o_bool, &lcp_wantoptions[0].neg_chap, "Require CHAP authentication from peer", OPT_PRIOSUB | OPT_A2COPY | OPT_A3OR | MDTYPE_MD5, -- 2.39.2