- (dtucker) [openbsd-compat/xcrypt.c] Fix typo: DISABLED_SHADOW ->

DISABLE_SHADOW.  Fixes HP-UX compile error.
This commit is contained in:
Darren Tucker 2003-07-26 19:38:30 +10:00
parent 0410e32f47
commit fbba5a0501
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
20030726
- (dtucker) [openbsd-compat/xcrypt.c] Fix typo: DISABLED_SHADOW ->
DISABLE_SHADOW. Fixes HP-UX compile error.
20030724
- (bal) [auth-passwd.c openbsd-compat/Makefile.in openbsd-compat/xcrypt.c
openbsd-compat/xcrypt.h] Split off encryption into xcrypt() interface,
@ -728,4 +732,4 @@
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
$Id: ChangeLog,v 1.2865 2003/07/24 06:52:13 mouring Exp $
$Id: ChangeLog,v 1.2866 2003/07/26 09:38:30 dtucker Exp $

View File

@ -96,7 +96,7 @@ shadow_pw(struct passwd *pw)
{
char *pw_password = pw->pw_passwd;
# if defined(HAVE_SHADOW_H) && !defined(DISABLED_SHADOW)
# if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
struct spwd *spw = getspnam(pw->pw_name);
if (spw != NULL)