The branch, master has been updated via 02ba909 s3: Remove pointless parentheses from 558ef5e s3-configure: Add CFLAGS_APPEND variable
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit 02ba9095e234b391690f0756128203dd86b7b40d Author: Volker Lendecke <v...@samba.org> Date: Sun Feb 26 09:20:38 2012 +0100 s3: Remove pointless parentheses Autobuild-User: Volker Lendecke <v...@samba.org> Autobuild-Date: Sun Feb 26 11:10:15 CET 2012 on sn-devel-104 ----------------------------------------------------------------------- Summary of changes: source3/libsmb/namequery.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Changeset truncated at 500 lines: diff --git a/source3/libsmb/namequery.c b/source3/libsmb/namequery.c index df7fdc3..a604f05 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; -- Samba Shared Repository