diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-17 19:42:41 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-02-17 19:42:41 +0000 |
commit | d522f6eb0324008023fed0be4d046f3fc51b0356 (patch) | |
tree | 9ecf8345e3c3ff77a81ef2a20d84c6497533e804 /usr.sbin/pppd/cbcp.c | |
parent | 1b433a7e5b43fe0dec72e100525e31299629c117 (diff) |
Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)
Diffstat (limited to 'usr.sbin/pppd/cbcp.c')
-rw-r--r-- | usr.sbin/pppd/cbcp.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/usr.sbin/pppd/cbcp.c b/usr.sbin/pppd/cbcp.c index 439d73a8395..b8a7c81fe07 100644 --- a/usr.sbin/pppd/cbcp.c +++ b/usr.sbin/pppd/cbcp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cbcp.c,v 1.3 2002/02/16 21:28:07 millert Exp $ */ +/* $OpenBSD: cbcp.c,v 1.4 2002/02/17 19:42:38 millert Exp $ */ /* * cbcp - Call Back Configuration Protocol. @@ -24,7 +24,7 @@ #if 0 static char rcsid[] = "Id: cbcp.c,v 1.2 1997/04/30 05:50:26 paulus Exp"; #else -static char rcsid[] = "$OpenBSD: cbcp.c,v 1.3 2002/02/16 21:28:07 millert Exp $"; +static char rcsid[] = "$OpenBSD: cbcp.c,v 1.4 2002/02/17 19:42:38 millert Exp $"; #endif #endif @@ -48,9 +48,8 @@ static void cbcp_open(int unit); static void cbcp_lowerup(int unit); static void cbcp_input(int unit, u_char *pkt, int len); static void cbcp_protrej(int unit); -static int cbcp_printpkt __P((u_char *pkt, int len, - void (*printer)(void *, char *, ...), - void *arg)); +static int cbcp_printpkt(u_char *pkt, int len, + void (*printer)(void *, char *, ...), void *arg); struct protent cbcp_protent = { PPP_CBCP, |