The branch, master has been updated via 479b4b09e1694b60a85d7d613655d3dab180ea94 (commit) from 1feab85be605269db272a4b48375fd85845b7ffd (commit)
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit 479b4b09e1694b60a85d7d613655d3dab180ea94 Author: Jelmer Vernooij <jel...@samba.org> Date: Wed Dec 24 05:39:29 2008 +0100 Fix accidental condition inversion. ----------------------------------------------------------------------- Summary of changes: source4/lib/ldb/modules/operational.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Changeset truncated at 500 lines: diff --git a/source4/lib/ldb/modules/operational.c b/source4/lib/ldb/modules/operational.c index 4193f91..11c06c8 100644 --- a/source4/lib/ldb/modules/operational.c +++ b/source4/lib/ldb/modules/operational.c @@ -273,7 +273,7 @@ static int operational_search(struct ldb_module *module, struct ldb_request *req req->op.search.scope, req->op.search.tree, /* use new set of attrs if any */ - search_attrs?req->op.search.attrs:search_attrs, + search_attrs == NULL?req->op.search.attrs:search_attrs, req->controls, ac, operational_callback, req); -- Samba Shared Repository