You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2020/06/19 19:39:47 UTC

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

Author: jailletc36
Date: Fri Jun 19 19:39:47 2020
New Revision: 1879007

URL: http://svn.apache.org/viewvc?rev=1879007&view=rev
Log:
Add a space to be consistent with surrounding code and to synch with 2.4.x

[skip ci]

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=1879007&r1=1879006&r2=1879007&view=diff
==============================================================================
--- httpd/httpd/trunk/server/protocol.c (original)
+++ httpd/httpd/trunk/server/protocol.c Fri Jun 19 19:39:47 2020
@@ -886,7 +886,7 @@ rrl_done:
             memcpy((char*)r->protocol, "HTTP", 4);
     }
     else if (r->protocol[0]) {
-        r->proto_num = HTTP_VERSION(0,9);
+        r->proto_num = HTTP_VERSION(0, 9);
         /* Defer setting the r->protocol string till error msg is composed */
         if (deferred_error == rrl_none)
             deferred_error = rrl_badprotocol;