summaryrefslogtreecommitdiffstats
path: root/c/src/libnetworking/pppd/fsm.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-11-25 19:42:21 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-11-25 19:42:21 +0000
commita6abd67af50cf087725951f082c39feea62ba02c (patch)
treea0fbc886f8230c4d6a67615b2a1ad1abd485ecb8 /c/src/libnetworking/pppd/fsm.c
parent2000-11-25 Antti P Miettinen <antti.p.miettinen@nokia.com> (diff)
downloadrtems-a6abd67af50cf087725951f082c39feea62ba02c.tar.bz2
2000-11-25 Antti P Miettinen <antti.p.miettinen@nokia.com>
* 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 <Thomas.Doerfler@imd-systems.de> 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.
Diffstat (limited to 'c/src/libnetworking/pppd/fsm.c')
-rw-r--r--c/src/libnetworking/pppd/fsm.c6
1 files changed, 3 insertions, 3 deletions
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;
{