1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

OK, might as well finish this... Allow ServerTokens Off

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@808895 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jim Jagielski
2009-08-28 14:31:00 +00:00
parent 0da446e9ea
commit 7fe574e381
7 changed files with 38 additions and 15 deletions

View File

@@ -229,7 +229,7 @@ static int proxy_connect_handler(request_rec *r, proxy_worker *worker,
"CONNECT %s HTTP/1.0" CRLF, r->uri);
apr_socket_send(sock, buffer, &nbytes);
nbytes = apr_snprintf(buffer, sizeof(buffer),
"Proxy-agent: %s" CRLF CRLF, ap_get_server_banner());
"Proxy-agent: %s" CRLF CRLF, ap_get_server_description());
apr_socket_send(sock, buffer, &nbytes);
}
else {