From: Volker Lendecke Date: Tue, 11 Dec 2018 12:56:03 +0000 (+0100) Subject: groupdb: Use dom_sid_str_buf X-Git-Tag: tdb-1.3.17~178 X-Git-Url: http://git.samba.org/?p=samba.git;a=commitdiff_plain;h=09efea3cb6395c99a8818ff75837e556e6fc8fa4 groupdb: Use dom_sid_str_buf Signed-off-by: Volker Lendecke Reviewed-by: Gary Lockyer --- diff --git a/source3/groupdb/mapping.c b/source3/groupdb/mapping.c index dd04bef9487..43722e777d4 100644 --- a/source3/groupdb/mapping.c +++ b/source3/groupdb/mapping.c @@ -606,8 +606,9 @@ NTSTATUS pdb_default_get_aliasinfo(struct pdb_methods *methods, if ((map->sid_name_use != SID_NAME_ALIAS) && (map->sid_name_use != SID_NAME_WKN_GRP)) { + struct dom_sid_buf buf; DEBUG(2, ("%s is a %s, expected an alias\n", - sid_string_dbg(sid), + dom_sid_str_buf(sid, &buf), sid_type_lookup(map->sid_name_use))); status = NT_STATUS_NO_SUCH_ALIAS; goto done; diff --git a/source3/groupdb/mapping_tdb.c b/source3/groupdb/mapping_tdb.c index 41b56be5ca3..d6a06ef199b 100644 --- a/source3/groupdb/mapping_tdb.c +++ b/source3/groupdb/mapping_tdb.c @@ -398,8 +398,9 @@ static int collect_map(struct db_record *rec, void *private_data) if ((state->domsid != NULL) && (dom_sid_compare_domain(state->domsid, &map->sid) != 0)) { + struct dom_sid_buf buf; DEBUG(11,("enum_group_mapping: group %s is not in domain\n", - sid_string_dbg(&map->sid))); + dom_sid_str_buf(&map->sid, &buf))); TALLOC_FREE(map); return 0; }