From a6abd67af50cf087725951f082c39feea62ba02c Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Sat, 25 Nov 2000 19:42:21 +0000 Subject: 2000-11-25 Antti P Miettinen * wrapup/Makefile.am: Added modem subdir. * configure.in, Makefile.am: Added modem subdir. * net/Makefile.am: Added if_pppvar.h, pppcompress.h. * pppd/Makefile.am: Added pppmain.c (which needs work). * pppd/chat.c, pppd/fsm.c, pppd/fsm.h, pppd/ipxcp.c, pppd/main.c, pppd/ppp_tty.c, pppd/upap.c: Changes from Thomas Doerfler and cosmetic changes by me. Actually main.c and ppp_tty.c should be scratched. The modem subdir has the real ppp_tty.c and the real pppd main is in pppmain.c. --- c/src/libnetworking/pppd/fsm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'c/src/libnetworking/pppd/fsm.c') diff --git a/c/src/libnetworking/pppd/fsm.c b/c/src/libnetworking/pppd/fsm.c index 09b67486e5..0d50b35c6c 100644 --- a/c/src/libnetworking/pppd/fsm.c +++ b/c/src/libnetworking/pppd/fsm.c @@ -36,7 +36,7 @@ #include "fsm.h" static void fsm_timeout __P((void *)); -static void fsm_rconfreq __P((fsm *, u_char, u_char *, int)); +static void fsm_rconfreq __P((fsm *, int, u_char *, int)); static void fsm_rconfack __P((fsm *, int, u_char *, int)); static void fsm_rconfnakrej __P((fsm *, int, int, u_char *, int)); static void fsm_rtermreq __P((fsm *, int, u_char *, int)); @@ -371,7 +371,7 @@ fsm_input(f, inpacket, l) static void fsm_rconfreq(f, id, inp, len) fsm *f; - u_char id; + int id; u_char *inp; int len; { @@ -773,7 +773,7 @@ fsm_sconfreq(f, retransmit) void fsm_sdata(f, code, id, data, datalen) fsm *f; - u_char code, id; + int code, id; u_char *data; int datalen; { -- cgit v1.2.3