1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

s4-kdc: Give information on how long the password history is

Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Fri Aug 31 08:06:17 CEST 2012 on sn-devel-104
This commit is contained in:
Andrew Bartlett 2012-08-31 14:02:28 +10:00
parent efec5a9299
commit d2c0387d66

View File

@ -119,7 +119,8 @@ static bool kpasswd_make_pwchange_reply(struct kdc_server *kdc,
reject_string = "Password does not meet complexity requirements"; reject_string = "Password does not meet complexity requirements";
break; break;
case SAM_PWD_CHANGE_PWD_IN_HISTORY: case SAM_PWD_CHANGE_PWD_IN_HISTORY:
reject_string = "Password is already in password history"; reject_string = talloc_asprintf(mem_ctx, "Password is already in password history, cannot match any of your %d passwords",
dominfo->password_history_length);
break; break;
default: default:
reject_string = talloc_asprintf(mem_ctx, "Password must be at least %d characters long, and cannot match any of your %d previous passwords", reject_string = talloc_asprintf(mem_ctx, "Password must be at least %d characters long, and cannot match any of your %d previous passwords",