summaryrefslogtreecommitdiff
path: root/pppd/ccp.c
diff options
context:
space:
mode:
authorPaul Mackerras <paulus@samba.org>1996-01-01 22:55:29 +0000
committerPaul Mackerras <paulus@samba.org>1996-01-01 22:55:29 +0000
commit077386e12afee1218fff48119f52680cd8f86ed5 (patch)
tree5a7ca195503a95ee7798fe6732c2a0ad14a8d01a /pppd/ccp.c
parent28b2df1e15519a33e11a1537b161e982359691da (diff)
downloadppp-077386e12afee1218fff48119f52680cd8f86ed5.tar.gz
add null entries for check_options and demand_conf in protent
Diffstat (limited to 'pppd/ccp.c')
-rw-r--r--pppd/ccp.c4
1 files changed, 2 insertions, 2 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 <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];