Author: tpot
Date: 2005-01-26 07:06:22 +0000 (Wed, 26 Jan 2005)
New Revision: 5010

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

Log:
Handle weird-ass NTTIME_1sec and NTTIME_hyper 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-26 06:51:39 UTC 
(rev 5009)
+++ branches/SAMBA_4_0/source/build/pidl/eparser.pm     2005-01-26 07:06:22 UTC 
(rev 5010)
@@ -117,7 +117,8 @@
  
     return "FT_UINT$1" if $t =~ /uint(8|16|32|64)/;
     return "FT_INT$1" if $t =~ /int(8|16|32|64)/;
-    return "FT_UINT64", if ($t eq "HYPER_T" or $t eq "NTTIME");
+    return "FT_UINT64", if $t eq "HYPER_T" or $t eq "NTTIME"
+       or $t eq "NTTIME_1sec" or $t eq "NTTIME_hyper";
     
     # Type is an enum
 

Reply via email to