]> granicus.if.org Git - apache/commitdiff
don't use literal '100' for HTTP_CONTINUE (searchability)
authorJeff Trawick <trawick@apache.org>
Mon, 27 Apr 2009 13:04:36 +0000 (13:04 +0000)
committerJeff Trawick <trawick@apache.org>
Mon, 27 Apr 2009 13:04:36 +0000 (13:04 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@768964 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_filters.c

index 4af27a6a3f5faefb46edb37cd9da0f6f1cd9e91f..2d739e297d1acddc27d3d14e1d2eb94810bece3d 100644 (file)
@@ -331,7 +331,8 @@ apr_status_t ap_http_filter(ap_filter_t *f, apr_bucket_brigade *b,
                 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);