From: Paul Mackerras Date: Tue, 14 Dec 1993 05:40:50 +0000 (+0000) Subject: fix some compile nits X-Git-Tag: ppp-2-1-2a~111 X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=545b1502b4f32570e64eb75d74cf9521035115e8 fix some compile nits --- diff --git a/pppd/auth.c b/pppd/auth.c index cdeb2b6..756ada9 100644 --- a/pppd/auth.c +++ b/pppd/auth.c @@ -33,7 +33,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: auth.c,v 1.1 1993/11/11 03:54:25 paulus Exp $"; +static char rcsid[] = "$Id: auth.c,v 1.2 1993/12/14 05:40:50 paulus Exp $"; #endif #include @@ -61,7 +61,7 @@ static char rcsid[] = "$Id: auth.c,v 1.1 1993/11/11 03:54:25 paulus Exp $"; #include #ifndef __GNUC__ /* why alloca.h doesn't define what alloca() returns is a mystery */ -char *alloca __ARGS((int)); +/* char *alloca __ARGS((int)); */ #endif /*__GNUC__*/ #endif /*sparc*/ @@ -543,7 +543,7 @@ have_upap_secret() * on `server'. Either can be the null string, meaning we don't * know the identity yet. */ -int +static int have_chap_secret(client, server) char *client; char *server;