summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2000-10-29 14:38:55 +0000
committerKevin Steves <stevesk@pobox.com>2000-10-29 14:38:55 +0000
commita58e0af1bd608c94314821d050d0c31c1484e490 (patch)
tree10269553b1778d588a6695f25183a7831227aa18
parent95c7b4dd6ebec7fe40de4d51eda1767152d6d900 (diff)
- (stevesk) Fix typo in auth.c: USE_PAM not PAM
-rw-r--r--ChangeLog3
-rw-r--r--auth.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3ba4b6248..c13cbe59f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
120001029
2 - (stevesk) Fix typo in auth.c: USE_PAM not PAM
3
120001028 420001028
2 - (djm) fix select hack in serverloop.c from Philippe WILLEM 5 - (djm) fix select hack in serverloop.c from Philippe WILLEM
3 <Philippe.WILLEM@urssaf.fr> 6 <Philippe.WILLEM@urssaf.fr>
diff --git a/auth.c b/auth.c
index bc42c96cb..d0edab54b 100644
--- a/auth.c
+++ b/auth.c
@@ -80,7 +80,7 @@ allowed_user(struct passwd * pw)
80#ifdef WITH_AIXAUTHENTICATE 80#ifdef WITH_AIXAUTHENTICATE
81 char *loginmsg; 81 char *loginmsg;
82#endif /* WITH_AIXAUTHENTICATE */ 82#endif /* WITH_AIXAUTHENTICATE */
83#if !defined(PAM) && defined(HAVE_SHADOW_H) && \ 83#if !defined(USE_PAM) && defined(HAVE_SHADOW_H) && \
84 !defined(DISABLE_SHADOW) && defined(HAS_SHADOW_EXPIRE) 84 !defined(DISABLE_SHADOW) && defined(HAS_SHADOW_EXPIRE)
85 struct spwd *spw; 85 struct spwd *spw;
86 86