diff options
-rw-r--r-- | Bugzilla/DaemonControl.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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); |