]> granicus.if.org Git - apache/commitdiff
Reverse the parameters on the apr_ldap_info() call to match the prototype.
authorBradley Nicholes <bnicholes@apache.org>
Thu, 5 Aug 2004 16:36:30 +0000 (16:36 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Thu, 5 Aug 2004 16:36:30 +0000 (16:36 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104507 13f79535-47bb-0310-9956-ffa450edef68

modules/experimental/util_ldap.c

index 7f0110cebee14afe1811d9fdf0406dd92b9f96d2..7b58cb94f94a2275c7a48015dd4986fa91f7e512 100644 (file)
@@ -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);
         }