summaryrefslogtreecommitdiff
path: root/openbsd-compat/port-aix.c
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2018-03-25 09:17:33 -0700
committerTim Rice <tim@multitalents.net>2018-03-25 09:17:33 -0700
commitbba02a5094b3db228ceac41cb4bfca165d0735f3 (patch)
tree4859ff59dd32836f13700e69195dc729a8ef2b87 /openbsd-compat/port-aix.c
parentd7a7a39168bdfe273587bf85d779d60569100a3f (diff)
modified: auth-sia.c
modified: openbsd-compat/port-aix.c modified: openbsd-compat/port-uw.c propogate changes to auth-passwd.c in commit 7c856857607112a3dfe6414696bf4c7ab7fb0cb3 to other providers of sys_auth_passwd()
Diffstat (limited to 'openbsd-compat/port-aix.c')
-rw-r--r--openbsd-compat/port-aix.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/openbsd-compat/port-aix.c b/openbsd-compat/port-aix.c
index c2970c4db..768d44c33 100644
--- a/openbsd-compat/port-aix.c
+++ b/openbsd-compat/port-aix.c
@@ -171,8 +171,9 @@ aix_valid_authentications(const char *user)
171 * returns 0. 171 * returns 0.
172 */ 172 */
173int 173int
174sys_auth_passwd(Authctxt *ctxt, const char *password) 174sys_auth_passwd(struct ssh *ssh, const char *password)
175{ 175{
176 Authctxt *ctxt = ssh->authctxt;
176 char *authmsg = NULL, *msg = NULL, *name = ctxt->pw->pw_name; 177 char *authmsg = NULL, *msg = NULL, *name = ctxt->pw->pw_name;
177 int authsuccess = 0, expired, reenter, result; 178 int authsuccess = 0, expired, reenter, result;
178 179