svn commit: samba r24635 - in branches/SAMBA_3_0_25/source/python: .

vlendec at samba.org vlendec at samba.org
Thu Aug 23 13:17:20 GMT 2007


Author: vlendec
Date: 2007-08-23 13:17:19 +0000 (Thu, 23 Aug 2007)
New Revision: 24635

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

Log:
Fix the python build

Modified:
   branches/SAMBA_3_0_25/source/python/py_smb.c


Changeset:
Modified: branches/SAMBA_3_0_25/source/python/py_smb.c
===================================================================
--- branches/SAMBA_3_0_25/source/python/py_smb.c	2007-08-23 12:23:19 UTC (rev 24634)
+++ branches/SAMBA_3_0_25/source/python/py_smb.c	2007-08-23 13:17:19 UTC (rev 24635)
@@ -48,7 +48,7 @@
 
 	ZERO_STRUCT(ip);
 
-	if (!cli_connect(cli, server, &ip))
+	if (!NT_STATUS_IS_OK(cli_connect(cli, server, &ip)))
 		return NULL;
 
 	return new_cli_state_object(cli);



More information about the samba-cvs mailing list