Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 67677 invoked by uid 500); 11 Jul 2002 19:53:06 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 67666 invoked by uid 500); 11 Jul 2002 19:53:06 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 11 Jul 2002 19:53:05 -0000 Message-ID: <20020711195305.19489.qmail@icarus.apache.org> From: wrowe@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/include http_protocol.h X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N wrowe 2002/07/11 12:53:05 Modified: include http_protocol.h Log: Fix comments Revision Changes Path 1.83 +3 -4 httpd-2.0/include/http_protocol.h Index: http_protocol.h =================================================================== RCS file: /home/cvs/httpd-2.0/include/http_protocol.h,v retrieving revision 1.82 retrieving revision 1.83 diff -u -r1.82 -r1.83 --- http_protocol.h 4 Jul 2002 17:05:25 -0000 1.82 +++ http_protocol.h 11 Jul 2002 19:53:04 -0000 1.83 @@ -347,12 +347,11 @@ /** * Set the content type for this request (r->content_type). - * Note: - * This function must be called to set r->content_type in order - * for the AddOutputFilterByType directive to work correctly. * @param r The current request - * @param length The new content type + * @param ct The new content type * @deffunc void ap_set_content_type(request_rec *r, const char* ct) + * @warning This function must be called to set r->content_type in order + * for the AddOutputFilterByType directive to work correctly. */ AP_DECLARE(void) ap_set_content_type(request_rec *r, const char *ct);