summaryrefslogtreecommitdiffstats
path: root/c/src/libnetworking/pppd/chap.c
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 /c/src/libnetworking/pppd/chap.c
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 'c/src/libnetworking/pppd/chap.c')
-rw-r--r--c/src/libnetworking/pppd/chap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/libnetworking/pppd/chap.c b/c/src/libnetworking/pppd/chap.c
index 15d0210369..5609ec8bae 100644
--- a/c/src/libnetworking/pppd/chap.c
+++ b/c/src/libnetworking/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 *));