Skip to content

Commit 996412d

Browse files
committed
bugfix: config: we should always use double quotes in [...] conditionals.
1 parent 83e9fbb commit 996412d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ if [ ! -z "$HTTP_POSTPONE" ]; then
4040
fi
4141

4242
# This module depends upon the postpone filter being activated
43-
if [ $HTTP_POSTPONE != YES ]; then
43+
if [ "$HTTP_POSTPONE" != YES ]; then
4444
HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_POSTPONE_FILTER_MODULE"
4545
HTTP_SRCS="$HTTP_SRCS $HTTP_POSTPONE_FILTER_SRCS"
4646
HTTP_POSTPONE=YES

0 commit comments

Comments
 (0)