From: Volker Lendecke Date: Sat, 27 Oct 2018 19:50:34 +0000 (+0200) Subject: idmap: Use dom_sid_str_buf X-Git-Tag: tdb-1.3.17~816 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87ae595b3880862589743e07dd2d08bfc0d35883;p=thirdparty%2Fsamba.git idmap: Use dom_sid_str_buf Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source3/winbindd/idmap_ad.c b/source3/winbindd/idmap_ad.c index 664483ace78..9e6510f43d3 100644 --- a/source3/winbindd/idmap_ad.c +++ b/source3/winbindd/idmap_ad.c @@ -872,8 +872,10 @@ static NTSTATUS idmap_ad_sids_to_unixids(struct idmap_domain *dom, } } if (map == NULL) { + struct dom_sid_buf buf; DBG_DEBUG("Got unexpected sid %s from object %s\n", - sid_string_tos(&sid), dn); + dom_sid_str_buf(&sid, &buf), + dn); continue; }