mirror of
https://github.com/samba-team/samba.git
synced 2025-08-04 08:22:08 +03:00
r13711: * Correctly handle acb_info/acct_flags as uint32 not as uint16.
* Fix a couple of related parsing issues. * in the info3 reply in a samlogon, return the ACB-flags (instead of returning zero) Guenther
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
06be771126
commit
5b89e8bc24
@ -467,7 +467,7 @@ static PyObject *samr_create_dom_user(PyObject *self, PyObject *args,
|
||||
uint32 user_rid;
|
||||
PyObject *result = NULL;
|
||||
TALLOC_CTX *mem_ctx;
|
||||
uint16 acb_info = ACB_NORMAL;
|
||||
uint32 acb_info = ACB_NORMAL;
|
||||
POLICY_HND user_pol;
|
||||
|
||||
if (!PyArg_ParseTupleAndKeywords(
|
||||
|
Reference in New Issue
Block a user