You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2009/04/27 15:04:36 UTC

svn commit: r768964 - /httpd/httpd/trunk/modules/http/http_filters.c

Author: trawick
Date: Mon Apr 27 13:04:36 2009
New Revision: 768964

URL: http://svn.apache.org/viewvc?rev=768964&view=rev
Log:
don't use literal '100' for HTTP_CONTINUE (searchability)

Modified:
    httpd/httpd/trunk/modules/http/http_filters.c

Modified: httpd/httpd/trunk/modules/http/http_filters.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/http_filters.c?rev=768964&r1=768963&r2=768964&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http/http_filters.c (original)
+++ httpd/httpd/trunk/modules/http/http_filters.c Mon Apr 27 13:04:36 2009
@@ -331,7 +331,8 @@
                 int len;
 
                 tmp = apr_pstrcat(f->r->pool, AP_SERVER_PROTOCOL, " ",
-                                  ap_get_status_line(100), CRLF CRLF, NULL);
+                                  ap_get_status_line(HTTP_CONTINUE), CRLF CRLF,
+                                  NULL);
                 len = strlen(tmp);
                 ap_xlate_proto_to_ascii(tmp, len);
                 apr_brigade_cleanup(bb);