svn commit: samba r5017 - in branches/SAMBA_4_0/source/scripting/swig: .

tpot at samba.org tpot at samba.org
Wed Jan 26 20:41:58 GMT 2005


Author: tpot
Date: 2005-01-26 20:41:58 +0000 (Wed, 26 Jan 2005)
New Revision: 5017

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

Log:
Fix bug in output typemap for uint32 (!)

Modified:
   branches/SAMBA_4_0/source/scripting/swig/samba.i


Changeset:
Modified: branches/SAMBA_4_0/source/scripting/swig/samba.i
===================================================================
--- branches/SAMBA_4_0/source/scripting/swig/samba.i	2005-01-26 20:40:59 UTC (rev 5016)
+++ branches/SAMBA_4_0/source/scripting/swig/samba.i	2005-01-26 20:41:58 UTC (rev 5017)
@@ -33,7 +33,7 @@
 }
 
 %typemap(out) uint32 {
-	$1 = PyLong_FromLong($input);
+	$result = PyLong_FromLong($1);
 }
 
 %typemap(out) NTSTATUS {



More information about the samba-cvs mailing list