diff options
author | Günther Deschner <gd@samba.org> | 2016-03-11 16:05:53 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2016-03-14 16:19:23 +0100 |
commit | 5d498d1b4d9b83f179fb7b2841a19ad984eec5f8 (patch) | |
tree | 16ab18fb91da6352628d69668ae4ccc134569d9a /source3/libads | |
parent | e0da059b39f9dd5ccb74f32f965e1ced384c77eb (diff) | |
download | samba-5d498d1b4d9b83f179fb7b2841a19ad984eec5f8.tar.gz |
s3:libnet:libnet_join: fill in output enctypes and only modify when necessary.
Guenther
BUG: https://bugzilla.samba.org/show_bug.cgi?id=11755
Signed-off-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/libads')
-rw-r--r-- | source3/libads/ldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libads/ldap.c b/source3/libads/ldap.c index 86191a12783..9e2ed98805f 100644 --- a/source3/libads/ldap.c +++ b/source3/libads/ldap.c @@ -1344,7 +1344,7 @@ char *ads_parent_dn(const char *dn) { ADS_STATUS status; char *expr; - const char *attrs[] = {"*", "nTSecurityDescriptor", NULL}; + const char *attrs[] = {"*", "msDS-SupportedEncryptionTypes", "nTSecurityDescriptor", NULL}; *res = NULL; |