diff options
author | Kevin Steves <stevesk@pobox.com> | 2002-07-23 00:51:53 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@pobox.com> | 2002-07-23 00:51:53 +0000 |
commit | 6fa740ba84f811cfcb12fcd94dffdd4c28cdf29e (patch) | |
tree | 1dd64072aba6d13e45f5291b20721a6a3c8666c6 | |
parent | 38b050a0f526d1b7982deb9d19f59c95f7b91b22 (diff) |
- (stevesk) [auth-pam.c] typo in comment
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | auth-pam.c | 4 |
2 files changed, 4 insertions, 3 deletions
@@ -8,6 +8,7 @@ | |||
8 | into it's own header. | 8 | into it's own header. |
9 | - (stevesk) [auth-pam.[ch] session.c] pam_getenvlist() must be | 9 | - (stevesk) [auth-pam.[ch] session.c] pam_getenvlist() must be |
10 | freed by the caller; add free_pam_environment() and use it. | 10 | freed by the caller; add free_pam_environment() and use it. |
11 | - (stevesk) [auth-pam.c] typo in comment | ||
11 | 12 | ||
12 | 20020721 | 13 | 20020721 |
13 | - (stevesk) [auth-pam.c] merge cosmetic changes from solar's | 14 | - (stevesk) [auth-pam.c] merge cosmetic changes from solar's |
@@ -1419,4 +1420,4 @@ | |||
1419 | - (stevesk) entropy.c: typo in debug message | 1420 | - (stevesk) entropy.c: typo in debug message |
1420 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ | 1421 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ |
1421 | 1422 | ||
1422 | $Id: ChangeLog,v 1.2392 2002/07/23 00:44:07 stevesk Exp $ | 1423 | $Id: ChangeLog,v 1.2393 2002/07/23 00:51:53 stevesk Exp $ |
diff --git a/auth-pam.c b/auth-pam.c index 8e1498296..39c2ac6a3 100644 --- a/auth-pam.c +++ b/auth-pam.c | |||
@@ -38,7 +38,7 @@ extern char *__progname; | |||
38 | 38 | ||
39 | extern int use_privsep; | 39 | extern int use_privsep; |
40 | 40 | ||
41 | RCSID("$Id: auth-pam.c,v 1.52 2002/07/23 00:44:07 stevesk Exp $"); | 41 | RCSID("$Id: auth-pam.c,v 1.53 2002/07/23 00:51:53 stevesk Exp $"); |
42 | 42 | ||
43 | #define NEW_AUTHTOK_MSG \ | 43 | #define NEW_AUTHTOK_MSG \ |
44 | "Warning: Your password has expired, please change it now." | 44 | "Warning: Your password has expired, please change it now." |
@@ -411,7 +411,7 @@ void start_pam(const char *user) | |||
411 | fatal_add_cleanup(&do_pam_cleanup_proc, NULL); | 411 | fatal_add_cleanup(&do_pam_cleanup_proc, NULL); |
412 | } | 412 | } |
413 | 413 | ||
414 | /* Return list of PAM enviornment strings */ | 414 | /* Return list of PAM environment strings */ |
415 | char **fetch_pam_environment(void) | 415 | char **fetch_pam_environment(void) |
416 | { | 416 | { |
417 | #ifdef HAVE_PAM_GETENVLIST | 417 | #ifdef HAVE_PAM_GETENVLIST |