1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-24 02:04:21 +03:00

s4-ldb: display security descriptors with correct SDL for known SIDs

This makes it much easier to compare SDs
This commit is contained in:
Andrew Tridgell 2010-01-10 12:53:07 +11:00
parent d5091a1dd9
commit a3e089db19
2 changed files with 7 additions and 1 deletions

View File

@ -406,7 +406,7 @@ static int ldif_write_ntSecurityDescriptor(struct ldb_context *ldb, void *mem_ct
talloc_free(sd);
return -1;
}
out->data = (uint8_t *)sddl_encode(mem_ctx, sd, NULL);
out->data = (uint8_t *)sddl_encode(mem_ctx, sd, samdb_domain_sid_cache_only(ldb));
talloc_free(sd);
if (out->data == NULL) {
return -1;

View File

@ -33,6 +33,7 @@
#include "auth/auth.h"
#include "ldb_wrap.h"
#include "param/param.h"
#include "dsdb/common/proto.h"
#endif
static struct ldb_cmdline options; /* needs to be static for older compilers */
@ -321,6 +322,11 @@ struct ldb_cmdline *ldb_cmdline_process(struct ldb_context *ldb,
goto failed;
}
#if (_SAMBA_BUILD_ >= 4)
/* get the domain SID into the cache for SDDL processing */
samdb_domain_sid(ldb);
#endif
return ret;
failed: