From: Ondřej Kuzník Date: Fri, 19 Jan 2018 18:21:17 +0000 (+0000) Subject: ITS#8798 Fix swapped arguments X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=45258f272ce4a37952ccb276631cfc0babf66462;p=openldap ITS#8798 Fix swapped arguments --- diff --git a/tests/progs/slapd-search.c b/tests/progs/slapd-search.c index c8505f05c8..5c50d76e5b 100644 --- a/tests/progs/slapd-search.c +++ b/tests/progs/slapd-search.c @@ -177,8 +177,8 @@ main( int argc, char **argv ) } else { do_search( config, sbase, scope, filter, - NULL, attrs, noattrs, config->loops, - nobind, force ); + NULL, attrs, noattrs, nobind, + config->loops, force ); } }