# HG changeset patch # User bears # Date 1079432658 0 # Node ID 20abd71918ade28ac8610c1337c2db2f212f0da8 # Parent e63a3bc27a75943f546b5404d65685ce9d2a4eb5 [svn] * src/authenticate.c: Move includes of grp.h and pwd.h to after the include of their pre-requisite headers. Spotted on MacOS X by Andre Berger. diff -r e63a3bc27a75 -r 20abd71918ad ChangeLog --- a/ChangeLog Sat Nov 29 23:53:31 2003 +0000 +++ b/ChangeLog Tue Mar 16 10:24:18 2004 +0000 @@ -1,3 +1,8 @@ +Tue Mar 16 2004 Jim Hague + +* src/authenticate.c: Move includes of grp.h and pwd.h to after the + include of their pre-requisite headers. Spotted on MacOS X by Andre Berger. + Sun Nov 29 2003 Jim Hague * src/configfile.c: Brown paper bag problem. noffle-group config was setting diff -r e63a3bc27a75 -r 20abd71918ad src/authenticate.c --- a/src/authenticate.c Sat Nov 29 23:53:31 2003 +0000 +++ b/src/authenticate.c Tue Mar 16 10:24:18 2004 +0000 @@ -3,7 +3,7 @@ Do client authentication - $Id: authenticate.c 423 2003-01-12 17:05:49Z bears $ + $Id: authenticate.c 622 2004-03-16 10:24:18Z bears $ */ #if HAVE_CONFIG_H @@ -11,13 +11,13 @@ #endif #include -#include -#include #include #include #include #include #include +#include +#include #include "common.h" #include "authenticate.h" #include "configfile.h"