summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-07-25 13:54:40 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-07-25 13:54:40 +0000
commita5d6544071b9112c6027be0415f35e51118c68e4 (patch)
tree63f7e32eb22b01ad69d7f513702575ff8dd0ecf4 /cpukit
parent2002-07-25 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-a5d6544071b9112c6027be0415f35e51118c68e4.tar.bz2
2002-07-25 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* pppd/chap.c, pppd/fsm.c, pppd/fsm.h, pppd/upap.c: Per PR255 fix prototype mismatches.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/pppd/chap.c4
-rw-r--r--cpukit/pppd/fsm.c2
-rw-r--r--cpukit/pppd/fsm.h2
-rw-r--r--cpukit/pppd/upap.c2
4 files changed, 5 insertions, 5 deletions
diff --git a/cpukit/pppd/chap.c b/cpukit/pppd/chap.c
index 15d0210369..5609ec8bae 100644
--- a/cpukit/pppd/chap.c
+++ b/cpukit/pppd/chap.c
@@ -108,8 +108,8 @@ static void ChapResponseTimeout __P((void *));
static void ChapReceiveChallenge __P((chap_state *, u_char *, int, int));
static void ChapRechallenge __P((void *));
static void ChapReceiveResponse __P((chap_state *, u_char *, int, int));
-static void ChapReceiveSuccess __P((chap_state *, u_char *, int, int));
-static void ChapReceiveFailure __P((chap_state *, u_char *, int, int));
+static void ChapReceiveSuccess __P((chap_state *, u_char *, u_char, int));
+static void ChapReceiveFailure __P((chap_state *, u_char *, u_char, int));
static void ChapSendStatus __P((chap_state *, int));
static void ChapSendChallenge __P((chap_state *));
static void ChapSendResponse __P((chap_state *));
diff --git a/cpukit/pppd/fsm.c b/cpukit/pppd/fsm.c
index ba7ddfe715..53401a9129 100644
--- a/cpukit/pppd/fsm.c
+++ b/cpukit/pppd/fsm.c
@@ -35,7 +35,7 @@
static const char rcsid[] = RCSID;
static void fsm_timeout __P((void *));
-static void fsm_rconfreq __P((fsm *, int, u_char *, int));
+static void fsm_rconfreq __P((fsm *, u_char, 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));
diff --git a/cpukit/pppd/fsm.h b/cpukit/pppd/fsm.h
index 6f230d9ddf..d1e623467c 100644
--- a/cpukit/pppd/fsm.h
+++ b/cpukit/pppd/fsm.h
@@ -135,7 +135,7 @@ void fsm_open __P((fsm *));
void fsm_close __P((fsm *, char *));
void fsm_input __P((fsm *, u_char *, int));
void fsm_protreject __P((fsm *));
-void fsm_sdata __P((fsm *, int, int, u_char *, int));
+void fsm_sdata __P((fsm *, u_char, u_char, u_char *, int));
/*
diff --git a/cpukit/pppd/upap.c b/cpukit/pppd/upap.c
index b782f26358..dc6be8a98b 100644
--- a/cpukit/pppd/upap.c
+++ b/cpukit/pppd/upap.c
@@ -89,7 +89,7 @@ static void upap_rauthreq __P((upap_state *, u_char *, int, int));
static void upap_rauthack __P((upap_state *, u_char *, int, int));
static void upap_rauthnak __P((upap_state *, u_char *, int, int));
static void upap_sauthreq __P((upap_state *));
-static void upap_sresp __P((upap_state *, int, int, char *, int));
+static void upap_sresp __P((upap_state *, u_char, u_char, char *, int));
/*