From: Dylan William Hardison Date: Mon, 12 Mar 2018 21:24:42 +0000 (-0400) Subject: fix typo in logging X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7cd5ab63ae59aae5c6d3c82ce4a7cbab9753efb3;p=thirdparty%2Fbugzilla.git fix typo in logging --- diff --git a/Bugzilla/DaemonControl.pm b/Bugzilla/DaemonControl.pm index b7f7bcbe9..510886dba 100644 --- a/Bugzilla/DaemonControl.pm +++ b/Bugzilla/DaemonControl.pm @@ -117,7 +117,7 @@ sub run_cereal_and_httpd { if ( ($lc->{inbound_proxies} // '') eq '*' && $lc->{urlbase} =~ /^https/) { push @httpd_args, '-DHTTPS'; } - elsif (not $lc->{urlbase} =~ /^https/) { + elsif ($lc->{urlbase} =~ /^https/) { WARN("HTTPS urlbase but inbound_proxies is not '*'"); } my $httpd_exit_f = run_httpd(@httpd_args);