From 77b1be7f4797f33f6fc9c2e2bd68a01690f09aca Mon Sep 17 00:00:00 2001 From: Mirek Fidler Date: Mon, 17 Aug 2026 11:24:28 +0200 Subject: [PATCH] .cosmetics --- uppsrc/Core/InetUtil.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/uppsrc/Core/InetUtil.cpp b/uppsrc/Core/InetUtil.cpp index 86655167d..fe4543148 100644 --- a/uppsrc/Core/InetUtil.cpp +++ b/uppsrc/Core/InetUtil.cpp @@ -592,11 +592,11 @@ bool HttpHeader::ParseSCGI(const String& scgi_hdr) // the query string, use it exactly as provided. Otherwise, if we have // a query_string, append it with the '?' separator. - if(uri.Find('?') >= 0 || qs.IsEmpty()) - f2 = uri; - else - f2 = uri + '?' + qs; - + if(uri.Find('?') >= 0 || qs.IsEmpty()) + f2 = uri; + else + f2 = uri + '?' + qs; + first_line = f1 + ' ' + f2 + ' ' + f3; if(!IsNull(content_length) && content_length && fields.Find("content-length") < 0) fields.Add("content-length", AsString(content_length));