From 395aa679f05516449f41715b0003089ae420652f Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 13 Jun 2006 14:39:52 +0000 Subject: 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) --- source3/nsswitch/winbindd_nss.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'source3') diff --git a/source3/nsswitch/winbindd_nss.h b/source3/nsswitch/winbindd_nss.h index 34e0d09721..2afefcc12c 100644 --- a/source3/nsswitch/winbindd_nss.h +++ b/source3/nsswitch/winbindd_nss.h @@ -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; -- cgit