s3-passdb: Fix call for search_aliases(). It returns bool and not NTSTATUS.
authorAmitay Isaacs <amitay@gmail.com>
Thu, 18 Aug 2011 05:08:22 +0000 (15:08 +1000)
committerAndrew Bartlett <abartlet@samba.org>
Fri, 19 Aug 2011 06:35:02 +0000 (16:35 +1000)
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
source3/passdb/py_passdb.c

index c4f0508c084d0f82e79a347b571297b38eb747fd..54dbb0d3893bd357757d4d7ca6b2c423cc8b78b3 100644 (file)
@@ -2482,7 +2482,6 @@ static PyObject *py_pdb_search_groups(pytalloc_Object *self)
 
 static PyObject *py_pdb_search_aliases(pytalloc_Object *self, PyObject *args)
 {
-       NTSTATUS status;
        struct pdb_methods *methods;
        TALLOC_CTX *tframe;
        struct pdb_search *search;
@@ -2512,9 +2511,7 @@ static PyObject *py_pdb_search_aliases(pytalloc_Object *self, PyObject *args)
        }
 
        if (!methods->search_aliases(methods, search, dom_sid)) {
-               PyErr_Format(py_pdb_error, "Unable to search aliases, (%d,%s)",
-                               NT_STATUS_V(status),
-                               get_friendly_nt_error_msg(status));
+               PyErr_Format(py_pdb_error, "Unable to search aliases");
                talloc_free(tframe);
                return NULL;
        }