1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-13 16:23:50 +03:00

r16644: Fix bug #3887 reported by jason@ncac.gwu.edu

by converting the lookup_XX functions to correctly
return SID_NAME_TYPE enums.
Jeremy.
This commit is contained in:
Jeremy Allison
2006-06-28 21:30:21 +00:00
committed by Gerald (Jerry) Carter
parent d354b430ff
commit ee2b2d96b6
12 changed files with 36 additions and 34 deletions

View File

@@ -147,7 +147,7 @@ static PyObject *lsa_lookup_names(PyObject *self, PyObject *args)
const char **names;
DOM_SID *sids;
TALLOC_CTX *mem_ctx = NULL;
uint32 *name_types;
enum SID_NAME_USE *name_types;
if (!PyArg_ParseTuple(args, "O", &py_names))
return NULL;