diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2013-04-28 13:15:17 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2013-04-28 13:15:17 +0200 |
commit | b3a27f63a81adc66a5c204462db997cbf48a5672 (patch) | |
tree | 67a0539b1f32e6c0357720707b153f99d2fd4153 | |
parent | 6ac4623e85ab9a846d90187cc368364356957cd2 (diff) |
save the old password if either the authentication or the authorisation response is NEW_AUTHTOK_REQD (c89c41b from 0.9)
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd-0.8@1939 ef36b2f9-881f-0410-afb5-c4e39611909c
-rw-r--r-- | pam/pam.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ pam.c - pam module functions Copyright (C) 2009 Howard Chu - Copyright (C) 2009, 2010, 2011, 2012 Arthur de Jong + Copyright (C) 2009, 2010, 2011, 2012, 2013 Arthur de Jong This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -443,7 +443,7 @@ int pam_sm_authenticate(pam_handle_t *pamh,int flags,int argc,const char **argv) /* save username */ ctx->user=strdup(username); /* if password change is required, save old password in context */ - if (ctx->authz==PAM_NEW_AUTHTOK_REQD) + if ((resp.res==PAM_NEW_AUTHTOK_REQD)||(ctx->saved_authz.res==PAM_NEW_AUTHTOK_REQD)) ctx->oldpassword=strdup(passwd); /* update caller's idea of the user name */ if ( ctx->tmpluser && ctx->tmpluser[0] && (strcmp(ctx->tmpluser,username)!=0) ) |