Skip to content

Commit c196c26

Browse files
committed
bugfix: config: we should always use double quotes in [...] conditionals.
1 parent daaa062 commit c196c26

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
@@ -29,7 +29,7 @@ if [ ! -z "$HTTP_POSTPONE" ]; then
2929
fi
3030

3131
# This module depends upon the postpone filter being activated
32-
if [ $HTTP_POSTPONE != YES ]; then
32+
if [ "$HTTP_POSTPONE" != YES ]; then
3333
HTTP_FILTER_MODULES="$HTTP_FILTER_MODULES $HTTP_POSTPONE_FILTER_MODULE"
3434
HTTP_SRCS="$HTTP_SRCS $HTTP_POSTPONE_FILTER_SRCS"
3535
HTTP_POSTPONE=YES

0 commit comments

Comments
 (0)