From: Stefan Metzmacher Date: Wed, 3 Apr 2024 14:00:41 +0000 (+0200) Subject: s3:libads: don't dump securityIdentifier and msDS-TrustForestTrustInfo as strings X-Git-Tag: tdb-1.4.11~1014 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e58f83d3958d7b6a16d7d75a7a266cead4befb48;p=thirdparty%2Fsamba.git s3:libads: don't dump securityIdentifier and msDS-TrustForestTrustInfo as strings Signed-off-by: Stefan Metzmacher Reviewed-by: Andreas Schneider --- diff --git a/source3/libads/ldap.c b/source3/libads/ldap.c index 4d4afb279c8..04b2f35022d 100644 --- a/source3/libads/ldap.c +++ b/source3/libads/ldap.c @@ -2906,11 +2906,13 @@ static bool ads_dump_field(ADS_STRUCT *ads, char *field, void **values, void *da {"nTSecurityDescriptor", False, dump_sd}, {"dnsRecord", False, dump_binary}, {"objectSid", False, dump_sid}, + {"securityIdentifier", False, dump_sid}, {"tokenGroups", False, dump_sid}, {"tokenGroupsNoGCAcceptable", False, dump_sid}, {"tokengroupsGlobalandUniversal", False, dump_sid}, {"mS-DS-CreatorSID", False, dump_sid}, {"msExchMailboxGuid", False, dump_guid}, + {"msDS-TrustForestTrustInfo", False, dump_binary}, {NULL, True, NULL} }; int i;