diff options
author | Volker Lendecke <vl@samba.org> | 2012-03-09 16:24:56 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2012-03-09 17:21:11 +0100 |
commit | 1bf126c0b3bc3b6d73571bba4105f46bd1ad68ce (patch) | |
tree | e95c1c42ececc7daabc5b57a1bfe1924d79726f1 /source3/rpc_client | |
parent | 9a93f43cebcb6b677548919f57badc1a857cb13b (diff) | |
download | samba-1bf126c0b3bc3b6d73571bba4105f46bd1ad68ce.tar.gz samba-1bf126c0b3bc3b6d73571bba4105f46bd1ad68ce.tar.bz2 samba-1bf126c0b3bc3b6d73571bba4105f46bd1ad68ce.zip |
s3: Remove some superfluous ()
Diffstat (limited to 'source3/rpc_client')
-rw-r--r-- | source3/rpc_client/cli_lsarpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_client/cli_lsarpc.c b/source3/rpc_client/cli_lsarpc.c index 66192bdf54..59ca3b0e17 100644 --- a/source3/rpc_client/cli_lsarpc.c +++ b/source3/rpc_client/cli_lsarpc.c @@ -299,7 +299,7 @@ static NTSTATUS dcerpc_lsa_lookup_sids_noalloc(struct dcerpc_binding_handle *h, domains[i] = talloc_strdup(domains, dom_name ? dom_name : ""); (types)[i] = lsa_names.names[i].sid_type; - if (((domains)[i] == NULL)) { + if ((domains)[i] == NULL) { DEBUG(0, ("cli_lsa_lookup_sids_noalloc(): out of memory\n")); *presult = NT_STATUS_UNSUCCESSFUL; return status; |