[auth-passwd.c]
     #if -> #ifdef so builds without HAVE_LOGIN_CAP work too; ok djm@ otto@
This commit is contained in:
Darren Tucker 2005-01-24 22:50:47 +11:00
parent 1b7223c005
commit 218f178cb2
2 changed files with 6 additions and 3 deletions

View File

@ -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
@ -2040,4 +2043,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.3625 2005/01/24 11:00:40 dtucker Exp $
$Id: ChangeLog,v 1.3626 2005/01/24 11:50:47 dtucker Exp $

View 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);