X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2Fecp.c;h=9570f389561ffc7daec9d0df7c8872baff8199ab;hb=bdd34ab1f2f87acb23c6d92feee7354ac53005ff;hp=a82c7b9cfcde7a2e5aceccddb52ee35a02e1bf7f;hpb=ce8636b2f8633dc8a5f9b2464b6fcab240afd404;p=ppp.git diff --git a/pppd/ecp.c b/pppd/ecp.c index a82c7b9..9570f38 100644 --- a/pppd/ecp.c +++ b/pppd/ecp.c @@ -39,16 +39,11 @@ * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. The name(s) of the authors of this software must not be used to + * 2. The name(s) of the authors of this software must not be used to * endorse or promote products derived from this software without * prior written permission. * - * 4. Redistributions of any form whatsoever must retain the following + * 3. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by Paul Mackerras * ". @@ -62,9 +57,9 @@ * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#define RCSID "$Id: ecp.c,v 1.3 2003/01/10 07:12:36 fcusack Exp $" - -static const char rcsid[] = RCSID; +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include @@ -84,20 +79,20 @@ static option_t ecp_option_list[] = { /* * Protocol entry points from main code. */ -static void ecp_init __P((int unit)); +static void ecp_init (int unit); /* -static void ecp_open __P((int unit)); -static void ecp_close __P((int unit, char *)); -static void ecp_lowerup __P((int unit)); -static void ecp_lowerdown __P((int)); -static void ecp_input __P((int unit, u_char *pkt, int len)); -static void ecp_protrej __P((int unit)); +static void ecp_open (int unit); +static void ecp_close (int unit, char *); +static void ecp_lowerup (int unit); +static void ecp_lowerdown (int); +static void ecp_input (int unit, u_char *pkt, int len); +static void ecp_protrej (int unit); */ -static int ecp_printpkt __P((u_char *pkt, int len, - void (*printer) __P((void *, char *, ...)), - void *arg)); +static int ecp_printpkt (u_char *pkt, int len, + void (*printer)(void *, char *, ...), + void *arg); /* -static void ecp_datainput __P((int unit, u_char *pkt, int len)); +static void ecp_datainput (int unit, u_char *pkt, int len); */ struct protent ecp_protent = { @@ -148,8 +143,7 @@ static fsm_callbacks ecp_callbacks = { * ecp_init - initialize ECP. */ static void -ecp_init(unit) - int unit; +ecp_init(int unit) { fsm *f = &ecp_fsm[unit]; @@ -167,11 +161,8 @@ ecp_init(unit) static int -ecp_printpkt(p, plen, printer, arg) - u_char *p; - int plen; - void (*printer) __P((void *, char *, ...)); - void *arg; +ecp_printpkt(u_char *p, int plen, + void (*printer)(void *, char *, ...), void *arg) { return 0; }