diff options
author | Tim Potter <tpot@samba.org> | 2002-05-23 22:53:59 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-05-23 22:53:59 +0000 |
commit | 63e2c7c5fe6eca86222a7a76d81ce1ee93ebde22 (patch) | |
tree | b6d60b564fd7892327466a79d2c007c0c2e9eac1 /source/python/py_lsa.c | |
parent | 37b6bf3aae4fd8ee3af7e5947b3e549dcef754cf (diff) | |
download | samba-63e2c7c5fe6eca86222a7a76d81ce1ee93ebde22.tar.gz samba-63e2c7c5fe6eca86222a7a76d81ce1ee93ebde22.tar.xz samba-63e2c7c5fe6eca86222a7a76d81ce1ee93ebde22.zip |
Compile fix for enum trust dom wrapper.
Diffstat (limited to 'source/python/py_lsa.c')
-rw-r--r-- | source/python/py_lsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/python/py_lsa.c b/source/python/py_lsa.c index 0f71187aa65..04af993e3e1 100644 --- a/source/python/py_lsa.c +++ b/source/python/py_lsa.c @@ -270,7 +270,7 @@ static PyObject *lsa_enum_trust_dom(PyObject *self, PyObject *args) ntstatus = cli_lsa_enum_trust_dom(hnd->cli, hnd->mem_ctx, &hnd->pol, &enum_ctx, &num_domains, &domain_names, - &domain_sids); + &domain_names, &domain_sids); if (!NT_STATUS_IS_OK(ntstatus)) { PyErr_SetObject(lsa_ntstatus, py_ntstatus_tuple(ntstatus)); |