diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-08-09 21:03:38 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:57:48 -0500 |
commit | ac2c620c509e8beb5862ffae8000da54b740023c (patch) | |
tree | f16e85a474e3b028c64567f8c85cdcd5f778ab06 /source4 | |
parent | 9c41274ace0a1dd88b113ce2bf84b33b0c528efa (diff) | |
download | samba-ac2c620c509e8beb5862ffae8000da54b740023c.tar.gz samba-ac2c620c509e8beb5862ffae8000da54b740023c.tar.bz2 samba-ac2c620c509e8beb5862ffae8000da54b740023c.zip |
r1677: security descriptors are always little-endian, regardless of DCE/RPC
level byte order flags
(This used to be commit a9c46aefaf4b53329eaf1a8e0446e74c4d1c750c)
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 548deeb21b..d7163839d5 100644 --- a/source4/librpc/idl/misc.idl +++ b/source4/librpc/idl/misc.idl @@ -101,7 +101,7 @@ interface misc const int SEC_DESC_RM_CONTROL_VALID = 0x4000; const int SEC_DESC_SELF_RELATIVE = 0x8000; - typedef [public] struct { + typedef [public,flag(NDR_LITTLE_ENDIAN)] struct { uint8 revision; uint16 type; /* SEC_DESC_xxxx flags */ [relative] dom_sid *owner_sid; |