From 46fad0ca274fb7c0c46f805aca3a93c7ba5c39e8 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 29 Aug 2007 14:35:32 +0000 Subject: r24785: Put checks in parentheses. Guenther (This used to be commit d8197aca5a4a509d318124f708fe15c35a2b4e11) --- source3/nsswitch/winbindd_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/nsswitch/winbindd_util.c b/source3/nsswitch/winbindd_util.c index e8831b3653..d12dff0932 100644 --- a/source3/nsswitch/winbindd_util.c +++ b/source3/nsswitch/winbindd_util.c @@ -1359,7 +1359,7 @@ BOOL winbindd_can_contact_domain( struct winbindd_domain *domain ) BOOL winbindd_internal_child(struct winbindd_child *child) { - if (child == idmap_child() || child == locator_child()) { + if ((child == idmap_child()) || (child == locator_child())) { return True; } -- cgit