diff options
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/libmsrpc.h | 2 | ||||
-rw-r--r-- | source3/include/passdb.h | 10 | ||||
-rw-r--r-- | source3/include/rpc_samr.h | 7 | ||||
-rw-r--r-- | source3/include/smb.h | 1 |
4 files changed, 10 insertions, 10 deletions
diff --git a/source3/include/libmsrpc.h b/source3/include/libmsrpc.h index 9fbd57a8d3..36bae44177 100644 --- a/source3/include/libmsrpc.h +++ b/source3/include/libmsrpc.h @@ -1761,7 +1761,7 @@ struct SamEnumUsers { POLICY_HND *dom_hnd; /**Enumerate users with specific ACB. If 0, all users will be enumerated*/ - uint16 acb_mask; + uint32 acb_mask; } in; struct { diff --git a/source3/include/passdb.h b/source3/include/passdb.h index 0e64653fe6..a9688c6f81 100644 --- a/source3/include/passdb.h +++ b/source3/include/passdb.h @@ -130,7 +130,7 @@ enum pdb_value_state { /* cache for bad password lockout data, to be used on replicated SAMs */ typedef struct logon_cache_struct { time_t entry_timestamp; - uint16 acct_ctrl; + uint32 acct_ctrl; uint16 bad_password_count; time_t bad_password_time; } LOGIN_CACHE; @@ -171,7 +171,7 @@ struct samu { DATA_BLOB nt_pw_his; /* nt hashed password history .data is Null if not available */ char* plaintext_pw; /* is Null if not available */ - uint16 acct_ctrl; /* account info (ACB_xxxx bit-mask) */ + uint32 acct_ctrl; /* account info (ACB_xxxx bit-mask) */ uint32 fields_present; /* 0x00ff ffff */ uint16 logon_divs; /* 168 - number of hours in a week */ @@ -204,7 +204,7 @@ struct acct_info { struct samr_displayentry { uint32 idx; uint32 rid; - uint16 acct_flags; + uint32 acct_flags; const char *account_name; const char *fullname; const char *description; @@ -248,7 +248,7 @@ struct pdb_methods { const char *name; /* What name got this module */ - NTSTATUS (*setsampwent)(struct pdb_methods *, BOOL update, uint16 acb_mask); + NTSTATUS (*setsampwent)(struct pdb_methods *, BOOL update, uint32 acb_mask); void (*endsampwent)(struct pdb_methods *); @@ -382,7 +382,7 @@ struct pdb_methods BOOL (*search_users)(struct pdb_methods *methods, struct pdb_search *search, - uint16 acct_flags); + uint32 acct_flags); BOOL (*search_groups)(struct pdb_methods *methods, struct pdb_search *search); BOOL (*search_aliases)(struct pdb_methods *methods, diff --git a/source3/include/rpc_samr.h b/source3/include/rpc_samr.h index a9e3e0a08d..ccb4fc9e44 100644 --- a/source3/include/rpc_samr.h +++ b/source3/include/rpc_samr.h @@ -743,8 +743,7 @@ typedef struct q_samr_enum_dom_users_info POLICY_HND pol; /* policy handle */ uint32 start_idx; /* number of values (0 indicates unlimited?) */ - uint16 acb_mask; /* 0x0000 indicates all */ - uint16 unknown_1; /* 0x0000 */ + uint32 acb_mask; /* 0x0000 indicates all */ uint32 max_size; /* 0x0000 ffff */ @@ -847,7 +846,7 @@ typedef struct samr_entry_info1 uint32 user_idx; uint32 rid_user; - uint16 acb_info; + uint32 acb_info; UNIHDR hdr_acct_name; UNIHDR hdr_user_name; @@ -878,7 +877,7 @@ typedef struct samr_entry_info2 uint32 user_idx; uint32 rid_user; - uint16 acb_info; + uint32 acb_info; UNIHDR hdr_srv_name; UNIHDR hdr_srv_desc; diff --git a/source3/include/smb.h b/source3/include/smb.h index fd3c23e575..832f91f9bd 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -243,6 +243,7 @@ typedef struct nttime_info { #define ACB_NOT_DELEGATED 0x00004000 /* 1 = Not delegated */ #define ACB_USE_DES_KEY_ONLY 0x00008000 /* 1 = Use DES key only */ #define ACB_DONT_REQUIRE_PREAUTH 0x00010000 /* 1 = Preauth not required */ +#define ACB_NO_AUTH_DATA_REQD 0x00080000 /* 1 = No authorization data required */ #define MAX_HOURS_LEN 32 |