From 077386e12afee1218fff48119f52680cd8f86ed5 Mon Sep 17 00:00:00 2001 From: Paul Mackerras Date: Mon, 1 Jan 1996 22:55:29 +0000 Subject: [PATCH] add null entries for check_options and demand_conf in protent --- pppd/ccp.c | 4 ++-- pppd/chap.c | 4 ++-- pppd/upap.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pppd/ccp.c b/pppd/ccp.c index 836d506..fb95ac5 100644 --- a/pppd/ccp.c +++ b/pppd/ccp.c @@ -26,7 +26,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: ccp.c,v 1.13 1995/12/18 03:43:40 paulus Exp $"; +static char rcsid[] = "$Id: ccp.c,v 1.14 1996/01/01 22:55:26 paulus Exp $"; #endif #include @@ -40,7 +40,7 @@ static char rcsid[] = "$Id: ccp.c,v 1.13 1995/12/18 03:43:40 paulus Exp $"; struct protent ccp_protent = { PPP_CCP, ccp_init, ccp_input, ccp_protrej, ccp_lowerup, ccp_lowerdown, ccp_open, ccp_close, - ccp_printpkt, NULL, 1, "CCP" + ccp_printpkt, NULL, 1, "CCP", NULL, NULL }; fsm ccp_fsm[NUM_PPP]; diff --git a/pppd/chap.c b/pppd/chap.c index d192fe6..c8ac58a 100644 --- a/pppd/chap.c +++ b/pppd/chap.c @@ -19,7 +19,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: chap.c,v 1.9 1995/12/18 03:46:19 paulus Exp $"; +static char rcsid[] = "$Id: chap.c,v 1.10 1996/01/01 22:55:28 paulus Exp $"; #endif /* @@ -39,7 +39,7 @@ static char rcsid[] = "$Id: chap.c,v 1.9 1995/12/18 03:46:19 paulus Exp $"; struct protent chap_protent = { PPP_CHAP, ChapInit, ChapInput, ChapProtocolReject, ChapLowerUp, ChapLowerDown, NULL, NULL, - ChapPrintPkt, NULL, 1, "CHAP" + ChapPrintPkt, NULL, 1, "CHAP", NULL, NULL }; chap_state chap[NUM_PPP]; /* CHAP state; one for each unit */ diff --git a/pppd/upap.c b/pppd/upap.c index bf5ee6a..2492596 100644 --- a/pppd/upap.c +++ b/pppd/upap.c @@ -18,7 +18,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: upap.c,v 1.7 1995/12/18 03:46:48 paulus Exp $"; +static char rcsid[] = "$Id: upap.c,v 1.8 1996/01/01 22:55:29 paulus Exp $"; #endif /* @@ -37,7 +37,7 @@ static char rcsid[] = "$Id: upap.c,v 1.7 1995/12/18 03:46:48 paulus Exp $"; struct protent pap_protent = { PPP_PAP, upap_init, upap_input, upap_protrej, upap_lowerup, upap_lowerdown, NULL, NULL, - upap_printpkt, NULL, 1, "PAP" + upap_printpkt, NULL, 1, "PAP", NULL, NULL }; upap_state upap[NUM_PPP]; /* UPAP state; one for each unit */ -- 2.39.2