summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DaemonControl.pm
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-03-12 22:24:42 +0100
committerDylan William Hardison <dylan@hardison.net>2018-03-12 22:25:58 +0100
commit7cd5ab63ae59aae5c6d3c82ce4a7cbab9753efb3 (patch)
tree46258cb40bcd43aa8b7877f9831b5df96d7e2da3 /Bugzilla/DaemonControl.pm
parent7430718ecad3f49801dfca1c9c93992435cfc732 (diff)
downloadbugzilla-7cd5ab63ae59aae5c6d3c82ce4a7cbab9753efb3.tar.gz
bugzilla-7cd5ab63ae59aae5c6d3c82ce4a7cbab9753efb3.tar.xz
fix typo in logging
Diffstat (limited to 'Bugzilla/DaemonControl.pm')
-rw-r--r--Bugzilla/DaemonControl.pm2
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);