]> git.ozlabs.org Git - ppp.git/commitdiff
Minor fix to #if around alloca.h
authorPaul Mackerras <paulus@samba.org>
Tue, 4 Jul 1995 12:34:17 +0000 (12:34 +0000)
committerPaul Mackerras <paulus@samba.org>
Tue, 4 Jul 1995 12:34:17 +0000 (12:34 +0000)
pppd/auth.c

index f08fb312abe2b64f90bb4dc5a04a93faa0002664..18f60f0197c850dd4eb245d38f83052cc83ab745 100644 (file)
@@ -33,7 +33,7 @@
  */
 
 #ifndef lint
-static char rcsid[] = "$Id: auth.c,v 1.15 1995/05/19 03:16:12 paulus Exp $";
+static char rcsid[] = "$Id: auth.c,v 1.16 1995/07/04 12:34:17 paulus Exp $";
 #endif
 
 #include <stdio.h>
@@ -66,7 +66,7 @@ static char rcsid[] = "$Id: auth.c,v 1.15 1995/05/19 03:16:12 paulus Exp $";
 #include "ccp.h"
 #include "pathnames.h"
 
-#if defined(sparc) && !defined(NeXT)
+#if defined(sun) && defined(sparc)
 #include <alloca.h>
 #endif /*sparc*/