diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-12-16 10:09:02 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-12-16 10:09:02 +0000 |
commit | 68d84436a143d9180e3026a0b2c490e39f869a76 (patch) | |
tree | 67eec18e8cd89f77b537f3d0337d6c5f7ab6de9e /source4 | |
parent | 66a005deb4c4c079a8091792e942fe8f1d16b1a7 (diff) | |
download | samba-68d84436a143d9180e3026a0b2c490e39f869a76.tar.gz samba-68d84436a143d9180e3026a0b2c490e39f869a76.tar.bz2 samba-68d84436a143d9180e3026a0b2c490e39f869a76.zip |
use bigendian mode to fix the idl for samr_LogonHours
(This used to be commit 1056618b6a70b32fc17a8290f3efa3334fa1b049)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/librpc/idl/misc.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/idl/misc.idl b/source4/librpc/idl/misc.idl index e6b1772284..7b41f45980 100644 --- a/source4/librpc/idl/misc.idl +++ b/source4/librpc/idl/misc.idl @@ -71,7 +71,7 @@ interface misc /* this is also used in samr and netlogon */ typedef [public, flag(NDR_PAHEX)] struct { - uint32 units_per_week; + uint16 units_per_week; [size_is(1260), length_is(units_per_week/8)] uint8 *bitmap; } samr_LogonHours; } |