aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xkerl2
1 files changed, 1 insertions, 1 deletions
diff --git a/kerl b/kerl
index f95c745..6acdcb4 100755
--- a/kerl
+++ b/kerl
@@ -531,7 +531,7 @@ maybe_patch_all() {
fi
# Maybe apply zlib patch
- if [ "$1" -ge 17 -a "$1" -le 19 ]; then
+ if [ "$1" -ge 17 ] && [ "$1" -le 19 ]; then
apply_zlib_patch >> "$LOGFILE"
fi
}