summaryrefslogtreecommitdiff
path: root/source4/lib/ldb-samba/pyldb.c
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/ldb-samba/pyldb.c')
-rw-r--r--source4/lib/ldb-samba/pyldb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/ldb-samba/pyldb.c b/source4/lib/ldb-samba/pyldb.c
index 472a4664ea..ff48a3bb04 100644
--- a/source4/lib/ldb-samba/pyldb.c
+++ b/source4/lib/ldb-samba/pyldb.c
@@ -174,11 +174,11 @@ static PyObject *py_ldb_set_session_info(PyObject *self, PyObject *args)
PyObject *PyAuthSession_Type;
bool ret;
- mod_samba_auth = PyImport_ImportModule("samba.auth");
+ mod_samba_auth = PyImport_ImportModule("samba.dcerpc.auth");
if (mod_samba_auth == NULL)
return NULL;
- PyAuthSession_Type = PyObject_GetAttrString(mod_samba_auth, "AuthSession");
+ PyAuthSession_Type = PyObject_GetAttrString(mod_samba_auth, "session_info");
if (PyAuthSession_Type == NULL)
return NULL;