diff options
author | Volker Lendecke <vl@samba.org> | 2010-09-21 11:08:19 -0700 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-09-21 11:09:46 -0700 |
commit | 1d90227c3c31dae573ac1dc3096925cb82e994b6 (patch) | |
tree | 09d4136c18ce948925b071f4e21873a5dd6ae207 /source3/winbindd | |
parent | 81d257e8aef096c4f6ef79d20543aaf287dc9e1a (diff) | |
download | samba-1d90227c3c31dae573ac1dc3096925cb82e994b6.tar.gz samba-1d90227c3c31dae573ac1dc3096925cb82e994b6.tar.xz samba-1d90227c3c31dae573ac1dc3096925cb82e994b6.zip |
s3: Remove a pointless if-statement
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/winbindd_msrpc.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/source3/winbindd/winbindd_msrpc.c b/source3/winbindd/winbindd_msrpc.c index 714e6570128..4bfede5ea05 100644 --- a/source3/winbindd/winbindd_msrpc.c +++ b/source3/winbindd/winbindd_msrpc.c @@ -1080,10 +1080,6 @@ NTSTATUS winbindd_lookup_sids(TALLOC_CTX *mem_ctx, /* And restore our original timeout. */ rpccli_set_timeout(cli, orig_timeout); - if (!NT_STATUS_IS_OK(status)) { - return status; - } - return status; } |