1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-11 16:58:40 +03:00

r16192: Fix timeformats in the winbind response struct.

(pam_winbind users were forced to change a password inappropriately)

Guenther
(This used to be commit 65643d31725a4e3fe157d66e9ecad03a65a484e2)
This commit is contained in:
Günther Deschner 2006-06-13 14:39:52 +00:00 committed by Gerald (Jerry) Carter
parent 1628d33ba0
commit 395aa679f0

View File

@ -330,17 +330,17 @@ struct winbindd_response {
uint16 min_length_password;
uint16 password_history;
uint32 password_properties;
uint32 expire;
uint32 min_passwordage;
time_t expire;
time_t min_passwordage;
} policy;
uint32 reject_reason;
struct info3_text {
uint32 logon_time;
uint32 logoff_time;
uint32 kickoff_time;
uint32 pass_last_set_time;
uint32 pass_can_change_time;
uint32 pass_must_change_time;
time_t logon_time;
time_t logoff_time;
time_t kickoff_time;
time_t pass_last_set_time;
time_t pass_can_change_time;
time_t pass_must_change_time;
uint16 logon_count;
uint16 bad_pw_count;
uint32 user_rid;