From afb96206aad938e633da87a2a04b2503ab0496c4 Mon Sep 17 00:00:00 2001 From: Lars Müller Date: Sat, 15 Apr 2006 13:45:27 +0000 Subject: r15093: Align to the last winbind changes. (This used to be commit 74fa3a2554b769382b2b3b43adfbc0cfbca3cd10) --- source3/python/py_winbind.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source3') diff --git a/source3/python/py_winbind.c b/source3/python/py_winbind.c index 2f22649bfb..40181f5579 100644 --- a/source3/python/py_winbind.c +++ b/source3/python/py_winbind.c @@ -134,8 +134,8 @@ static PyObject *py_enum_domain_users(PyObject *self, PyObject *args) result = PyList_New(0); - if (response.extra_data) { - const char *extra_data = response.extra_data; + if (response.extra_data.data) { + const char *extra_data = response.extra_data.data; fstring name; while (next_token(&extra_data, name, ",", sizeof(fstring))) @@ -165,8 +165,8 @@ static PyObject *py_enum_domain_groups(PyObject *self, PyObject *args) result = PyList_New(0); - if (response.extra_data) { - const char *extra_data = response.extra_data; + if (response.extra_data.data) { + const char *extra_data = response.extra_data.data; fstring name; while (next_token(&extra_data, name, ",", sizeof(fstring))) @@ -200,8 +200,8 @@ static PyObject *py_enum_trust_dom(PyObject *self, PyObject *args) result = PyList_New(0); - if (response.extra_data) { - const char *extra_data = response.extra_data; + if (response.extra_data.data) { + const char *extra_data = response.extra_data.data; fstring name; while (next_token(&extra_data, name, ",", sizeof(fstring))) -- cgit