From 29ac5d287314160e9b1ab92bf61a1c4b74767d95 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Mon, 28 Apr 2003 05:40:46 +0000 Subject: Two character tabs - I don't think so. (This used to be commit 40d370bec6ef14cfa85e75cdb2f9122110ae9f1d) --- source3/lib/util_sid.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'source3/lib') diff --git a/source3/lib/util_sid.c b/source3/lib/util_sid.c index dfd3b312e0..9dc0c8ca18 100644 --- a/source3/lib/util_sid.c +++ b/source3/lib/util_sid.c @@ -637,14 +637,13 @@ void print_guid(GUID *guid) DOM_SID *sid_dup_talloc(TALLOC_CTX *ctx, DOM_SID *src) { - DOM_SID *dst; - - if(!src) - return NULL; - - if((dst = talloc_zero(ctx, sizeof(DOM_SID))) != NULL) { - sid_copy( dst, src); - } - - return dst; + DOM_SID *dst; + + if(!src) + return NULL; + + if((dst = talloc_zero(ctx, sizeof(DOM_SID))) != NULL) + sid_copy( dst, src); + + return dst; } -- cgit