summaryrefslogtreecommitdiffstats
path: root/auth-shadow.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-02-11 08:48:52 +0100
committerDarren Tucker <dtucker@zip.com.au>2004-02-11 08:48:52 +0100
commitcee6d4cf5ac447aaba72972cc8ce835ca2378417 (patch)
tree9113041af0d1f0ce6ae326abff5d43c4c04239e5 /auth-shadow.c
parent - (dtucker) [configure.ac] Bug #345: Do not disable utmp on HP-UX 10.x. (diff)
downloadopenssh-cee6d4cf5ac447aaba72972cc8ce835ca2378417.tar.xz
openssh-cee6d4cf5ac447aaba72972cc8ce835ca2378417.zip
- (dtucker) [auth-passwd.c auth-shadow.c] Only enable shadow expiry check
if HAS_SHADOW_EXPIRY is set.
Diffstat (limited to 'auth-shadow.c')
-rw-r--r--auth-shadow.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/auth-shadow.c b/auth-shadow.c
index 8436eee5f..76c0d9f52 100644
--- a/auth-shadow.c
+++ b/auth-shadow.c
@@ -23,9 +23,9 @@
*/
#include "includes.h"
-RCSID("$Id: auth-shadow.c,v 1.2 2004/02/10 02:51:34 dtucker Exp $");
+RCSID("$Id: auth-shadow.c,v 1.3 2004/02/11 07:48:52 dtucker Exp $");
-#ifdef USE_SHADOW
+#if defined(USE_SHADOW) && defined(HAS_SHADOW_EXPIRE)
#include <shadow.h>
#include "auth.h"
@@ -76,4 +76,4 @@ auth_shadow_pwexpired(Authctxt *ctxt)
return 0;
}
-#endif /* USE_SHADOW */
+#endif /* USE_SHADOW && HAS_SHADOW_EXPIRE */