From: Bradley Nicholes Date: Thu, 5 Aug 2004 16:36:30 +0000 (+0000) Subject: Reverse the parameters on the apr_ldap_info() call to match the prototype. X-Git-Tag: post_ajp_proxy~84 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=17172c40d6c5eb77eb06ca867144bf781153426e;p=apache Reverse the parameters on the apr_ldap_info() call to match the prototype. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104507 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/experimental/util_ldap.c b/modules/experimental/util_ldap.c index 7f0110cebe..7b58cb94f9 100644 --- a/modules/experimental/util_ldap.c +++ b/modules/experimental/util_ldap.c @@ -1216,7 +1216,7 @@ static int util_ldap_post_config(apr_pool_t *p, apr_pool_t *plog, */ { apr_ldap_err_t *result = NULL; - apr_ldap_info(&(result), p); + apr_ldap_info(p, &(result)); if (result != NULL) { ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, s, result->reason); }