s3: Remove pointless parentheses
authorVolker Lendecke <vl@samba.org>
Sun, 26 Feb 2012 08:20:38 +0000 (09:20 +0100)
committerVolker Lendecke <vl@samba.org>
Sun, 26 Feb 2012 10:10:15 +0000 (11:10 +0100)
Autobuild-User: Volker Lendecke <vl@samba.org>
Autobuild-Date: Sun Feb 26 11:10:15 CET 2012 on sn-devel-104

source3/libsmb/namequery.c

index df7fdc3d9f4ca9fe7142c49fc43dc97c9a912ecb..a604f05d81a5cf5bf3ad62dd45a4b3d16ed458bb 100644 (file)
@@ -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;