summaryrefslogtreecommitdiffstats
path: root/cpukit/pppd
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-12-21 14:37:31 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-12-21 14:37:31 +0000
commit5bce35ba29656467807d3733ea6c1b324aaa55e5 (patch)
treec5f18588bb0b1a193ed05c6519bdb394b946e807 /cpukit/pppd
parent Patch rtems-rc-19991203-7.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-5bce35ba29656467807d3733ea6c1b324aaa55e5.tar.bz2
Made prototype of ChapReceiveSuccess and ChapReceiveFailure match.
Diffstat (limited to 'cpukit/pppd')
-rw-r--r--cpukit/pppd/chap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/pppd/chap.c b/cpukit/pppd/chap.c
index 2a349c9b60..de80fdf666 100644
--- a/cpukit/pppd/chap.c
+++ b/cpukit/pppd/chap.c
@@ -609,7 +609,7 @@ static void
ChapReceiveSuccess(cstate, inp, id, len)
chap_state *cstate;
u_char *inp;
- u_char id;
+ int id; /* was u_char id */
int len;
{
@@ -647,7 +647,7 @@ static void
ChapReceiveFailure(cstate, inp, id, len)
chap_state *cstate;
u_char *inp;
- u_char id;
+ int id; /* was u_char id; */
int len;
{
CHAPDEBUG((LOG_INFO, "ChapReceiveFailure: Rcvd id %d.", id));