summaryrefslogtreecommitdiff
path: root/source4/librpc/idl
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2008-07-23 13:06:32 +0200
committerStefan Metzmacher <metze@samba.org>2008-07-23 14:46:08 +0200
commitecdd13389fd1b262024fe663a57da11f8a84e239 (patch)
tree3e53934d33fa5e5c3ec721c6cd14ddb5fb77d10f /source4/librpc/idl
parent69d3f0e602893875118878a4b11c2a65f9d4090c (diff)
downloadsamba-ecdd13389fd1b262024fe663a57da11f8a84e239.tar.gz
samba-ecdd13389fd1b262024fe663a57da11f8a84e239.tar.bz2
samba-ecdd13389fd1b262024fe663a57da11f8a84e239.zip
drsblobs.idl: fix idl for supplementalCredentialsSubBlob
metze (This used to be commit 24c5b10136f6e640832193aaf9e6d7e865c288bc)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r--source4/librpc/idl/drsblobs.idl11
1 files changed, 8 insertions, 3 deletions
diff --git a/source4/librpc/idl/drsblobs.idl b/source4/librpc/idl/drsblobs.idl
index 2f9819a10c..4829952cf8 100644
--- a/source4/librpc/idl/drsblobs.idl
+++ b/source4/librpc/idl/drsblobs.idl
@@ -228,11 +228,16 @@ interface drsblobs {
[charset(DOS)] uint8 data[data_len];
} supplementalCredentialsPackage;
- /* this are 0x30 (48) whitespaces (0x20) followed by 'P' (0x50) */
- const string SUPPLEMENTAL_CREDENTIALS_PREFIX = " P";
+ /* this are 0x30 (48) whitespaces (0x20) */
+ const string SUPPLEMENTAL_CREDENTIALS_PREFIX = " ";
+
+ typedef [flag(NDR_PAHEX)] enum {
+ SUPPLEMENTAL_CREDENTIALS_SIGNATURE = 0x0050
+ } supplementalCredentialsSignature;
typedef [gensize] struct {
- [value(SUPPLEMENTAL_CREDENTIALS_PREFIX),charset(UTF16)] uint16 prefix[0x31];
+ [value(SUPPLEMENTAL_CREDENTIALS_PREFIX),charset(UTF16)] uint16 prefix[0x30];
+ [value(SUPPLEMENTAL_CREDENTIALS_SIGNATURE)] supplementalCredentialsSignature signature;
uint16 num_packages;
supplementalCredentialsPackage packages[num_packages];
} supplementalCredentialsSubBlob;