From bd116b8947dcb7044f46700b1721613c8d937b0d Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Sun, 27 Oct 2019 14:02:25 +0100 Subject: lib/load-configuration: "64k" means 65535, not 65536 --- lib/load-configuration | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/load-configuration') diff --git a/lib/load-configuration b/lib/load-configuration index 83d3beb..f20dc2d 100755 --- a/lib/load-configuration +++ b/lib/load-configuration @@ -217,7 +217,7 @@ if ${i_am_the_master}; then printf 'from_base64("%s"),' \ "$( printf '%s' "$*" | \ - head -c $((64*1024)) | \ + head -c $((64*1024-1)) | \ base64 )" if tty -s; then -- cgit v1.2.3