svn commit: samba r15093 - branches/SAMBA_3_0/source/python trunk/source/python

lmuelle at samba.org lmuelle at samba.org
Sat Apr 15 13:45:28 GMT 2006


Author: lmuelle
Date: 2006-04-15 13:45:27 +0000 (Sat, 15 Apr 2006)
New Revision: 15093

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=15093

Log:
Align to the last winbind changes.

Modified:
   branches/SAMBA_3_0/source/python/py_winbind.c
   trunk/source/python/py_winbind.c


Changeset:
Modified: branches/SAMBA_3_0/source/python/py_winbind.c
===================================================================
--- branches/SAMBA_3_0/source/python/py_winbind.c	2006-04-15 10:13:09 UTC (rev 15092)
+++ branches/SAMBA_3_0/source/python/py_winbind.c	2006-04-15 13:45:27 UTC (rev 15093)
@@ -134,8 +134,8 @@
 
 	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 @@
 
 	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 @@
 
 	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)))

Modified: trunk/source/python/py_winbind.c
===================================================================
--- trunk/source/python/py_winbind.c	2006-04-15 10:13:09 UTC (rev 15092)
+++ trunk/source/python/py_winbind.c	2006-04-15 13:45:27 UTC (rev 15093)
@@ -134,8 +134,8 @@
 
 	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 @@
 
 	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 @@
 
 	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)))



More information about the samba-cvs mailing list