summaryrefslogtreecommitdiff
path: root/2.4
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2020-12-02 12:39:33 +0100
committerLars Wendler <polynomial-c@gentoo.org>2020-12-02 12:39:33 +0100
commitea133ba8e3fcd4b4153a5e34355a5f3196531c65 (patch)
treef72911e5cd4bc2d8b5187b73f9fd517abed099c9 /2.4
parent2.4/init: Fix regexp for interface binding detection (diff)
downloadapache-ea133ba8e3fcd4b4153a5e34355a5f3196531c65.tar.gz
apache-ea133ba8e3fcd4b4153a5e34355a5f3196531c65.tar.bz2
apache-ea133ba8e3fcd4b4153a5e34355a5f3196531c65.zip
2.4/init: Fixed typo in interface check
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to '2.4')
-rwxr-xr-x2.4/init/apache2.initd2
1 files changed, 1 insertions, 1 deletions
diff --git a/2.4/init/apache2.initd b/2.4/init/apache2.initd
index e834b44..6e5e292 100755
--- a/2.4/init/apache2.initd
+++ b/2.4/init/apache2.initd
@@ -39,7 +39,7 @@ depend() {
local x warn_addr
for x in $(virtualhosts | grep '^\(\[\|\*:\|\)[[:digit:]]' | sed 's@\(:[[:digit:]]\{1,5\}\)\([[:space:]].*\|$\)@\1@' | sort -u) ; do
case "${x}" in
- \*:80|\*.443) ;;
+ \*:80|\*:443) ;;
*) warn_addr="${warn_addr} ${x}" ;;
esac
done