diff options
author | Volker Lendecke <vl@samba.org> | 2012-02-26 09:20:38 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2012-02-26 11:10:15 +0100 |
commit | 02ba9095e234b391690f0756128203dd86b7b40d (patch) | |
tree | 76d2773a78824bbf239f5f05fc2d10d52e2cba4c /source3 | |
parent | 558ef5e26eaff1e1731ce2abd97a5aa486b0a32d (diff) | |
download | samba-02ba9095e234b391690f0756128203dd86b7b40d.tar.gz samba-02ba9095e234b391690f0756128203dd86b7b40d.tar.bz2 samba-02ba9095e234b391690f0756128203dd86b7b40d.zip |
s3: Remove pointless parentheses
Autobuild-User: Volker Lendecke <vl@samba.org>
Autobuild-Date: Sun Feb 26 11:10:15 CET 2012 on sn-devel-104
Diffstat (limited to 'source3')
-rw-r--r-- | source3/libsmb/namequery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/namequery.c b/source3/libsmb/namequery.c index df7fdc3d9f..a604f05d81 100644 --- a/source3/libsmb/namequery.c +++ b/source3/libsmb/namequery.c @@ -3049,7 +3049,7 @@ static NTSTATUS get_dc_list(const char *domain, /* if we have no addresses and haven't done the auto lookup, then just return the list of DC's. Or maybe we just failed. */ - if ((num_addresses == 0)) { + if (num_addresses == 0) { if (done_auto_lookup) { DEBUG(4,("get_dc_list: no servers found\n")); status = NT_STATUS_NO_LOGON_SERVERS; |