1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-26 23:33:15 +03:00

r9037: New fields in usermod function - allow_password_change and

force_password_change datetime.

rafal
This commit is contained in:
Rafal Szczesniak
2005-08-04 02:51:26 +00:00
committed by Gerald (Jerry) Carter
parent 8eff726393
commit dfa2cc6c4e
3 changed files with 26 additions and 7 deletions

View File

@@ -67,6 +67,7 @@ struct libnet_rpc_userdel {
#define USERMOD_FIELD_PROFILE_PATH ( 0x00000200 )
#define USERMOD_FIELD_ACCT_EXPIRY ( 0x00004000 )
#define USERMOD_FIELD_ALLOW_PASS_CHG ( 0x00008000 )
#define USERMOD_FIELD_FORCE_PASS_CHG ( 0x00010000 )
#define USERMOD_FIELD_ACCT_FLAGS ( 0x00100000 )
struct libnet_rpc_usermod {
@@ -85,6 +86,7 @@ struct libnet_rpc_usermod {
const char *profile_path;
struct timeval *acct_expiry;
struct timeval *allow_password_change;
struct timeval *force_password_change;
} change;
} in;
};