summaryrefslogtreecommitdiff
path: root/auth.c
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2003-01-08 20:04:27 -0800
committerTim Rice <tim@multitalents.net>2003-01-08 20:04:27 -0800
commit458c6bfa10bb370487e9e27f540e1a7e7a5909cc (patch)
tree28a6e73ac47406d9372ceb00005439dee20a0d1b /auth.c
parentd0d7a8b27b4cc9faaa4d8e4112d5d1fe759b0939 (diff)
[auth.c] declare today at top of allowed_user() to keep older compilers happy.
Diffstat (limited to 'auth.c')
-rw-r--r--auth.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/auth.c b/auth.c
index 48586cc5d..c6e5a1732 100644
--- a/auth.c
+++ b/auth.c
@@ -80,6 +80,9 @@ allowed_user(struct passwd * pw)
80#endif /* WITH_AIXAUTHENTICATE */ 80#endif /* WITH_AIXAUTHENTICATE */
81#if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW) 81#if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
82 struct spwd *spw; 82 struct spwd *spw;
83#if !defined(USE_PAM) && defined(HAS_SHADOW_EXPIRE)
84 time_t today;
85#endif
83#endif 86#endif
84 87
85 /* Shouldn't be called if pw is NULL, but better safe than sorry... */ 88 /* Shouldn't be called if pw is NULL, but better safe than sorry... */
@@ -106,7 +109,7 @@ allowed_user(struct passwd * pw)
106#if !defined(USE_PAM) && defined(HAVE_SHADOW_H) && \ 109#if !defined(USE_PAM) && defined(HAVE_SHADOW_H) && \
107 !defined(DISABLE_SHADOW) && defined(HAS_SHADOW_EXPIRE) 110 !defined(DISABLE_SHADOW) && defined(HAS_SHADOW_EXPIRE)
108#define DAY (24L * 60 * 60) /* 1 day in seconds */ 111#define DAY (24L * 60 * 60) /* 1 day in seconds */
109 time_t today = time(NULL) / DAY; 112 today = time(NULL) / DAY;
110 debug3("allowed_user: today %d sp_expire %d sp_lstchg %d" 113 debug3("allowed_user: today %d sp_expire %d sp_lstchg %d"
111 " sp_max %d", (int)today, (int)spw->sp_expire, 114 " sp_max %d", (int)today, (int)spw->sp_expire,
112 (int)spw->sp_lstchg, (int)spw->sp_max); 115 (int)spw->sp_lstchg, (int)spw->sp_max);