2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 14:25:15 +00:00

getprpwuid is broken in HP-UX 10.20 at least (it sleeps for 2 minutes if the

shadow files don't exist).
This commit is contained in:
Todd C. Miller
1998-10-21 23:50:10 +00:00
parent 929bff13f1
commit 7ffee3b997
8 changed files with 26 additions and 26 deletions

View File

@@ -69,14 +69,14 @@ static char rcsid[] = "$Id$";
#include <sys/ioctl.h>
#endif /* HAVE_TERMIO_H */
#endif /* HAVE_TERMIOS_H */
#ifdef HAVE_GETPRPWUID
#ifdef HAVE_GETPRPWNAM
# ifdef __hpux
# include <hpsecurity.h>
# else
# include <sys/security.h>
# endif /* __hpux */
# include <prot.h> /* for AUTH_MAX_PASSWD_LENGTH */
#endif /* HAVE_GETPRPWUID */
#endif /* HAVE_GETPRPWNAM */
#include <pathnames.h>
#include "compat.h"