diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-11-19 02:35:48 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:59 -0500 |
commit | 717c8bc7950c2f0eabcdbc7437f47289f6b227b5 (patch) | |
tree | 6e88a5269bf1d718ba7b88ee8836e393fb025158 /source4/build | |
parent | a0fa682faa309bda812008ea3a084cf54f65310b (diff) | |
download | samba-717c8bc7950c2f0eabcdbc7437f47289f6b227b5.tar.gz samba-717c8bc7950c2f0eabcdbc7437f47289f6b227b5.tar.bz2 samba-717c8bc7950c2f0eabcdbc7437f47289f6b227b5.zip |
r3869: in the NDR encoded replPropertyMetaData attribute in ADS
I see a new 64 bit time field which are seconds since 1601,
this will be mapped to NTTIME by th eparsing code
+#define NTTIME_1sec NTTIME
metze
(This used to be commit db35f3b0f99943311ff8b797e8336616dab28220)
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/pidl/util.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/pidl/util.pm b/source4/build/pidl/util.pm index bddce57740..4f4a0d8b6e 100644 --- a/source4/build/pidl/util.pm +++ b/source4/build/pidl/util.pm @@ -207,7 +207,7 @@ sub is_scalar_type($) if ($type =~ /^u?int\d+/) { return 1; } - if ($type =~ /char|short|long|NTTIME| + if ($type =~ /char|short|long|NTTIME|NTTIME_1sec| time_t|error_status_t|boolean32|unsigned32| HYPER_T|wchar_t|DATA_BLOB|WERROR/x) { return 1; |