]> andersk Git - openssh.git/commitdiff
- dtucker@cvs.openbsd.org 2005/01/24 11:47:13
authordtucker <dtucker>
Mon, 24 Jan 2005 11:50:47 +0000 (11:50 +0000)
committerdtucker <dtucker>
Mon, 24 Jan 2005 11:50:47 +0000 (11:50 +0000)
     [auth-passwd.c]
     #if -> #ifdef so builds without HAVE_LOGIN_CAP work too; ok djm@ otto@

ChangeLog
auth-passwd.c

index 960c08b87a217c75e13ddb05b53815884131ab5f..39189b3a5e3cd2d8b6dfec481e31edbb50c5ba75 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -22,6 +22,9 @@
    - dtucker@cvs.openbsd.org 2005/01/24 10:29:06
      [moduli]
      Import new moduli; requested by deraadt@ a week ago
+   - dtucker@cvs.openbsd.org 2005/01/24 11:47:13
+     [auth-passwd.c]
+     #if -> #ifdef so builds without HAVE_LOGIN_CAP work too; ok djm@ otto@
 
 20050120
  - (dtucker) OpenBSD CVS Sync
index 2e5fbc73a8efb843e64f71b6fea86f26ba974bea..fb14f5ce4f80c3dd10a2ac6caf5fbe183df09f8d 100644 (file)
@@ -36,7 +36,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: auth-passwd.c,v 1.32 2005/01/21 08:32:02 otto Exp $");
+RCSID("$OpenBSD: auth-passwd.c,v 1.33 2005/01/24 11:47:13 dtucker Exp $");
 
 #include "packet.h"
 #include "buffer.h"
@@ -131,7 +131,7 @@ warn_expiry(Authctxt *authctxt, auth_session_t *as)
 
        pwtimeleft = auth_check_change(as);
        actimeleft = auth_check_expire(as);
-#if HAVE_LOGIN_CAP
+#ifdef HAVE_LOGIN_CAP
        if (authctxt->valid) {
                pwwarntime = login_getcaptime(lc, "password-warn", TWO_WEEKS,
                    TWO_WEEKS);
This page took 0.137422 seconds and 5 git commands to generate.