diff options
author | Darren Tucker <dtucker@zip.com.au> | 2004-02-10 03:01:14 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2004-02-10 03:01:14 +0100 |
commit | 9df3defdbb122c406072760e07859a3b4ebf567e (patch) | |
tree | 53444d450b96ce33715e16374ee97e1b72ebbb6e /defines.h | |
parent | - (dtucker) [auth-passwd.c auth.h openbsd-compat/port-aix.c (diff) | |
download | openssh-9df3defdbb122c406072760e07859a3b4ebf567e.tar.xz openssh-9df3defdbb122c406072760e07859a3b4ebf567e.zip |
- (dtucker) [LICENCE Makefile.in auth-passwd.c auth-shadow.c auth.c auth.h
defines.h] Bug #14: Use do_pwchange to support password expiry and force
change for platforms using /etc/shadow. ok djm@
Diffstat (limited to 'defines.h')
-rw-r--r-- | defines.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -25,7 +25,7 @@ #ifndef _DEFINES_H #define _DEFINES_H -/* $Id: defines.h,v 1.109 2004/01/27 05:40:35 tim Exp $ */ +/* $Id: defines.h,v 1.110 2004/02/10 02:01:14 dtucker Exp $ */ /* Constants */ @@ -585,6 +585,9 @@ struct winsize { # endif #endif +#if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW) +# define USE_SHADOW +#endif /* The login() library function in libutil is first choice */ #if defined(HAVE_LOGIN) && !defined(DISABLE_LOGIN) |