diff options
-rw-r--r-- | source3/passdb/lookup_sid.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/source3/passdb/lookup_sid.c b/source3/passdb/lookup_sid.c index f6eb1e7baa1..2ffc02a9886 100644 --- a/source3/passdb/lookup_sid.c +++ b/source3/passdb/lookup_sid.c @@ -123,11 +123,9 @@ BOOL lookup_name(TALLOC_CTX *mem_ctx, /* 1. well-known names */ - { - if (lookup_wellknown_name(tmp_ctx, name, &sid, &domain)) { - type = SID_NAME_WKN_GRP; - goto ok; - } + if (lookup_wellknown_name(tmp_ctx, name, &sid, &domain)) { + type = SID_NAME_WKN_GRP; + goto ok; } /* 2. Builtin domain as such */ |