]> git.ozlabs.org Git - ppp.git/commitdiff
add null entries for check_options and demand_conf in protent
authorPaul Mackerras <paulus@samba.org>
Mon, 1 Jan 1996 22:55:29 +0000 (22:55 +0000)
committerPaul Mackerras <paulus@samba.org>
Mon, 1 Jan 1996 22:55:29 +0000 (22:55 +0000)
pppd/ccp.c
pppd/chap.c
pppd/upap.c

index 836d5064af309e9aac2eab923afeeeb944f208d0..fb95ac57fd318144c38a020a64dd7d201d3c719f 100644 (file)
@@ -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 <syslog.h>
@@ -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];
index d192fe618d39d856ae026b33c8439326f851c567..c8ac58a35d1ff84d630b6214fec72f0760dfcb2d 100644 (file)
@@ -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 */
index bf5ee6a5465fb7fee08461642aec595204e2fd0f..2492596da373eeab28a04d9189f7755c2bcabfdf 100644 (file)
@@ -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 */