summaryrefslogtreecommitdiffstats
path: root/source/lib
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-04-28 05:40:46 +0000
committerTim Potter <tpot@samba.org>2003-04-28 05:40:46 +0000
commit40d370bec6ef14cfa85e75cdb2f9122110ae9f1d (patch)
treee7ea643abb2c9f43881891964261eda46ca8f15f /source/lib
parent0c3314ab97331aa709216e7ad2a1a0c8605eb160 (diff)
downloadsamba-40d370bec6ef14cfa85e75cdb2f9122110ae9f1d.tar.gz
samba-40d370bec6ef14cfa85e75cdb2f9122110ae9f1d.tar.xz
samba-40d370bec6ef14cfa85e75cdb2f9122110ae9f1d.zip
Two character tabs - I don't think so.
Diffstat (limited to 'source/lib')
-rw-r--r--source/lib/util_sid.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/source/lib/util_sid.c b/source/lib/util_sid.c
index dfd3b312e06..9dc0c8ca18d 100644
--- a/source/lib/util_sid.c
+++ b/source/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;
}