This is an automated email from the ASF dual-hosted git repository.

bcall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 8fcc1ca  gcc9: fixed issue with always printing a null char*
8fcc1ca is described below

commit 8fcc1ca57997dc19573c777a1395dd3f8a524b98
Author: Bryan Call <[email protected]>
AuthorDate: Thu May 9 15:42:30 2019 -0700

    gcc9: fixed issue with always printing a null char*
---
 proxy/http/HttpSM.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/proxy/http/HttpSM.cc b/proxy/http/HttpSM.cc
index 0563084..61cc4fe 100644
--- a/proxy/http/HttpSM.cc
+++ b/proxy/http/HttpSM.cc
@@ -7811,7 +7811,7 @@ HttpSM::redirect_request(const char *arg_redirect_url, 
const int arg_redirect_le
 
       if (redirectScheme == nullptr) {
         clientUrl.scheme_set(scheme_str, scheme_len);
-        SMDebug("http_redirect", "[HttpSM::redirect_request] URL without 
scheme %.*s", redirectSchemeLen, redirectScheme);
+        SMDebug("http_redirect", "[HttpSM::redirect_request] URL without 
scheme");
       }
 
       if (noPortInHost) {

Reply via email to