diff options
author | Tim Potter <tpot@samba.org> | 2005-01-26 07:06:22 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:09:13 -0500 |
commit | a1852aa19b60af8a09b31261dffaaa89346f3962 (patch) | |
tree | 4fec329dc44b61c6684d7518bc48ba45a6cca874 | |
parent | 65a9f77d3f0e0dc40d5b9dfc851559ec93a08d87 (diff) | |
download | samba-a1852aa19b60af8a09b31261dffaaa89346f3962.tar.gz samba-a1852aa19b60af8a09b31261dffaaa89346f3962.tar.bz2 samba-a1852aa19b60af8a09b31261dffaaa89346f3962.zip |
r5010: Handle weird-ass NTTIME_1sec and NTTIME_hyper types.
(This used to be commit a38db33713348e8a07d3fc932865b2f649dc962f)
-rw-r--r-- | source4/build/pidl/eparser.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/build/pidl/eparser.pm b/source4/build/pidl/eparser.pm index ab8904ab9d..478525deb0 100644 --- a/source4/build/pidl/eparser.pm +++ b/source4/build/pidl/eparser.pm @@ -117,7 +117,8 @@ sub type2ft($) 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 |