diff options
author | Darren Tucker <dtucker@zip.com.au> | 2005-05-29 10:54:27 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2005-05-29 10:54:27 +1000 |
commit | f9fea65ba91c6c8002185fab31266f60c6b33a78 (patch) | |
tree | 625c073d14e4f2a3edbd048a90b36a349da3a469 | |
parent | 6b2fe31def24b50c4cc705f2a3b861348b1be8e2 (diff) |
- (dtucker) [openbsd-compat/port-aix.c] Minor correction to debug message,
spotted by tim@.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | openbsd-compat/port-aix.c | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -4,6 +4,8 @@ | |||
4 | While at it, initialize the other arguments to auth functions in case they | 4 | While at it, initialize the other arguments to auth functions in case they |
5 | ever acquire this behaviour. | 5 | ever acquire this behaviour. |
6 | - (dtucker) [openbsd-compat/port-aix.c] Whitespace cleanups while there. | 6 | - (dtucker) [openbsd-compat/port-aix.c] Whitespace cleanups while there. |
7 | - (dtucker) [openbsd-compat/port-aix.c] Minor correction to debug message, | ||
8 | spotted by tim@. | ||
7 | 9 | ||
8 | 20050528 | 10 | 20050528 |
9 | - (dtucker) [configure.ac] For AC_CHECK_HEADERS() and AC_CHECK_FUNCS() have | 11 | - (dtucker) [configure.ac] For AC_CHECK_HEADERS() and AC_CHECK_FUNCS() have |
@@ -2635,4 +2637,4 @@ | |||
2635 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 2637 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
2636 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 2638 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
2637 | 2639 | ||
2638 | $Id: ChangeLog,v 1.3799 2005/05/29 00:32:47 dtucker Exp $ | 2640 | $Id: ChangeLog,v 1.3800 2005/05/29 00:54:27 dtucker Exp $ |
diff --git a/openbsd-compat/port-aix.c b/openbsd-compat/port-aix.c index 8267c8ef1..81d8124e0 100644 --- a/openbsd-compat/port-aix.c +++ b/openbsd-compat/port-aix.c | |||
@@ -158,7 +158,7 @@ sys_auth_passwd(Authctxt *ctxt, const char *password) | |||
158 | result = authenticate((char *)name, (char *)password, &reenter, | 158 | result = authenticate((char *)name, (char *)password, &reenter, |
159 | &authmsg); | 159 | &authmsg); |
160 | aix_remove_embedded_newlines(authmsg); | 160 | aix_remove_embedded_newlines(authmsg); |
161 | debug3("AIX/authenticate result %d, msg %.100s", result, | 161 | debug3("AIX/authenticate result %d, authmsg %.100s", result, |
162 | authmsg); | 162 | authmsg); |
163 | } while (reenter); | 163 | } while (reenter); |
164 | 164 | ||