svn commit: samba r4841 - in branches/SAMBA_4_0/source/build/pidl: .

tpot at samba.org tpot at samba.org
Wed Jan 19 10:17:47 GMT 2005


Author: tpot
Date: 2005-01-19 10:17:46 +0000 (Wed, 19 Jan 2005)
New Revision: 4841

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

Log:
Handle levels that are signed integer types.

Modified:
   branches/SAMBA_4_0/source/build/pidl/eparser.pm


Changeset:
Modified: branches/SAMBA_4_0/source/build/pidl/eparser.pm
===================================================================
--- branches/SAMBA_4_0/source/build/pidl/eparser.pm	2005-01-19 09:58:29 UTC (rev 4840)
+++ branches/SAMBA_4_0/source/build/pidl/eparser.pm	2005-01-19 10:17:46 UTC (rev 4841)
@@ -627,7 +627,7 @@
 
 	# Fix some internal variable declarations
 
-        s/uint(16|32) _level;/uint$1_t _level;/smg;
+        s/(u?)int(8|16|32) _level;/$1int$2_t _level;/smg;
         s/ndr_pull_([^\(]*)\(ndr,\ tree,\ hf_level,\ &_level\);
             /ndr_pull_$1(ndr, tree, hf_level_$1, &_level);/smgx;
 				



More information about the samba-cvs mailing list