You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2016/08/18 15:43:26 UTC

svn commit: r1756821 - /httpd/httpd/trunk/server/protocol.c

Author: wrowe
Date: Thu Aug 18 15:43:26 2016
New Revision: 1756821

URL: http://svn.apache.org/viewvc?rev=1756821&view=rev
Log:
Drop unused, previously sscanf() target variables

Modified:
    httpd/httpd/trunk/server/protocol.c

Modified: httpd/httpd/trunk/server/protocol.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/protocol.c?rev=1756821&r1=1756820&r2=1756821&view=diff
==============================================================================
--- httpd/httpd/trunk/server/protocol.c (original)
+++ httpd/httpd/trunk/server/protocol.c Thu Aug 18 15:43:26 2016
@@ -577,8 +577,6 @@ static int read_request_line(request_rec
     } deferred_error = rrl_none;
     char *ll;
     char *uri;
-    unsigned int major = 1, minor = 0;   /* Assume HTTP/1.0 if non-"HTTP" protocol */
-    char http[5];
     apr_size_t len;
     int num_blank_lines = DEFAULT_LIMIT_BLANK_LINES;
     core_server_config *conf = ap_get_core_module_config(r->server->module_config);