From e54786b53543b4667288c64abb55478fddd95061 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Mon, 27 Feb 2006 10:32:45 +0000 Subject: 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 used to be commit 5b89e8bc24f0fdc8b52d5c9e849aba723df34ea7) --- source3/python/py_samr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/python') diff --git a/source3/python/py_samr.c b/source3/python/py_samr.c index fc9f2a83eb..a26cd8d132 100644 --- a/source3/python/py_samr.c +++ b/source3/python/py_samr.c @@ -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( -- cgit