You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by pq...@apache.org on 2005/10/15 20:48:05 UTC

svn commit: r321436 - /httpd/httpd/trunk/modules/ldap/util_ldap.c

Author: pquerna
Date: Sat Oct 15 11:48:03 2005
New Revision: 321436

URL: http://svn.apache.org/viewcvs?rev=321436&view=rev
Log:
Do not set r->content_type directly, use our ap_set_content_type API, so that output filters can properly be applied.

Modified:
    httpd/httpd/trunk/modules/ldap/util_ldap.c

Modified: httpd/httpd/trunk/modules/ldap/util_ldap.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/ldap/util_ldap.c?rev=321436&r1=321435&r2=321436&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/ldap/util_ldap.c (original)
+++ httpd/httpd/trunk/modules/ldap/util_ldap.c Sat Oct 15 11:48:03 2005
@@ -103,7 +103,8 @@
         return DECLINED;
     }
 
-    r->content_type = "text/html";
+    ap_set_content_type(r, "text/html");
+
     if (r->header_only)
         return OK;