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

tpot at samba.org tpot at samba.org
Wed Jan 26 06:29:11 GMT 2005


Author: tpot
Date: 2005-01-26 06:29:10 +0000 (Wed, 26 Jan 2005)
New Revision: 5008

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

Log:
32-bits is the default bitmap size.

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-26 05:24:13 UTC (rev 5007)
+++ branches/SAMBA_4_0/source/build/pidl/eparser.pm	2005-01-26 06:29:10 UTC (rev 5008)
@@ -215,11 +215,10 @@
 {
     my $e = shift;
 
-    return "32", if util::has_property($e->{DATA}, "bitmap32bit");
     return "16", if util::has_property($e->{DATA}, "bitmap16bit");
     return "8", if util::has_property($e->{DATA}, "bitmap8bit");
 
-    die("can't calculate bitmap size for $e->{NAME}");
+    return "32";
 }
 
 sub NeededTypedef($)



More information about the samba-cvs mailing list