]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
fix typo in logging
authorDylan William Hardison <dylan@hardison.net>
Mon, 12 Mar 2018 21:24:42 +0000 (17:24 -0400)
committerDylan William Hardison <dylan@hardison.net>
Mon, 12 Mar 2018 21:25:58 +0000 (17:25 -0400)
Bugzilla/DaemonControl.pm

index b7f7bcbe97966793d384d30b8bae3237374d0efe..510886dbaf16b47e71110a377c489b217d0c65f7 100644 (file)
@@ -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);