summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2018-12-13 21:21:57 +0100
committerAndrew Bartlett <abartlet@samba.org>2018-12-20 23:40:25 +0100
commitda3e3c5e05770330f69f75a97443477b1d028d78 (patch)
tree147443a2233fcbf2cae2e23d4f372c323057e2bf /source3
parent6af7d7ffda8025a2d270ba1d01b0708efca511a2 (diff)
downloadsamba-da3e3c5e05770330f69f75a97443477b1d028d78.tar.gz
lib: Avoid sid_string_dbg
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>
Diffstat (limited to 'source3')
-rw-r--r--source3/lib/privileges.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/privileges.c b/source3/lib/privileges.c
index ec4e1893bda..c02d4c9884c 100644
--- a/source3/lib/privileges.c
+++ b/source3/lib/privileges.c
@@ -96,7 +96,7 @@ static bool get_privileges( const struct dom_sid *sid, uint64_t *mask )
if (!NT_STATUS_IS_OK(status)) {
DEBUG(4, ("get_privileges: No privileges assigned to SID "
- "[%s]\n", sid_string_dbg(sid)));
+ "[%s]\n", tmp.buf));
return False;
}
@@ -106,7 +106,7 @@ static bool get_privileges( const struct dom_sid *sid, uint64_t *mask )
} else {
if (data.dsize != sizeof( uint64_t ) ) {
DEBUG(3, ("get_privileges: Invalid privileges record assigned to SID "
- "[%s]\n", sid_string_dbg(sid)));
+ "[%s]\n", tmp.buf));
return False;
}