From a4d7b3a1dfddc95c1825588cddaee5b4039fa5e2 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 14 Mar 2011 08:09:21 +0100 Subject: s3: "hex_encode" does the same as "binary_string" --- source3/lib/util_sid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib/util_sid.c') diff --git a/source3/lib/util_sid.c b/source3/lib/util_sid.c index f6210c13fd..ef46a38f8a 100644 --- a/source3/lib/util_sid.c +++ b/source3/lib/util_sid.c @@ -121,7 +121,7 @@ char *sid_binstring_hex(const struct dom_sid *sid) if (!buf) return NULL; sid_linearize(buf, len, sid); - s = binary_string(buf, len); + hex_encode(buf, len, &s); free(buf); return s; } -- cgit