diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-10-21 12:36:54 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:02:22 -0500 |
commit | 18324abda7cbd206e76b4ed83ef8d6da5e24ae30 (patch) | |
tree | 5d4cb1ae3a003d53ab560c2d5d06eebea7b6e5bb | |
parent | 0d35bae3c47577868795de373ca27c1ab1270039 (diff) | |
download | samba-18324abda7cbd206e76b4ed83ef8d6da5e24ae30.tar.gz samba-18324abda7cbd206e76b4ed83ef8d6da5e24ae30.tar.bz2 samba-18324abda7cbd206e76b4ed83ef8d6da5e24ae30.zip |
r3113: make us able to generate the PAC with the same align as a MS KDC
(we should fix pidl to handle NDR_ALIGN8 correct as a real fix for this problem)
metze
(This used to be commit ab7a26a95052cfd8bac1d03b534b5b516b409f61)
-rw-r--r-- | source4/librpc/idl/krb5pac.idl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/librpc/idl/krb5pac.idl b/source4/librpc/idl/krb5pac.idl index 50a4c42423..7b4543a3cc 100644 --- a/source4/librpc/idl/krb5pac.idl +++ b/source4/librpc/idl/krb5pac.idl @@ -14,11 +14,13 @@ interface krb5pac typedef struct { NTTIME logon_time; [flag(STR_SIZE2|STR_NOTERM|STR_BYTESIZE)] string account_name; + uint32 _pad; } UNKNOWN_TYPE_10; typedef [flag(NDR_PAHEX)] struct { uint32 type; - uint8 signature[20]; + uint8 signature[16]; + uint32 _pad; } PAC_SIGNATURE_DATA; typedef struct { |