From 2e07c2ade89f4ff281c61f74cb88e09990cf5f46 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 15 Dec 2007 22:47:30 +0100 Subject: s/sid_to_string/sid_to_fstring/ least surprise for callers (This used to be commit eb523ba77697346a365589101aac379febecd546) --- source3/lib/display_sec.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/lib/display_sec.c') diff --git a/source3/lib/display_sec.c b/source3/lib/display_sec.c index caa13a6a5e..f6a6bb6465 100644 --- a/source3/lib/display_sec.c +++ b/source3/lib/display_sec.c @@ -151,7 +151,7 @@ void display_sec_ace(SEC_ACE *ace) printf(" (%d) flags: 0x%02x ", ace->type, ace->flags); display_sec_ace_flags(ace->flags); display_sec_access(&ace->access_mask); - sid_to_string(sid_str, &ace->trustee); + sid_to_fstring(sid_str, &ace->trustee); printf("\t\tSID: %s\n\n", sid_str); if (sec_ace_object(ace->type)) { @@ -246,12 +246,12 @@ void display_sec_desc(SEC_DESC *sec) } if (sec->owner_sid) { - sid_to_string(sid_str, sec->owner_sid); + sid_to_fstring(sid_str, sec->owner_sid); printf("\tOwner SID:\t%s\n", sid_str); } if (sec->group_sid) { - sid_to_string(sid_str, sec->group_sid); + sid_to_fstring(sid_str, sec->group_sid); printf("\tGroup SID:\t%s\n", sid_str); } } -- cgit