From 379850ae3f4dd321b1220c6a0a5d9f9a58dfc7e1 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 22 Nov 2022 10:53:56 +0000 Subject: [PATCH] libssh.sh: use single quote [ci skip] --- libssh.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libssh.sh b/libssh.sh index d6857bd07..c1585d15d 100755 --- a/libssh.sh +++ b/libssh.sh @@ -60,7 +60,7 @@ _VER="$1" l="$(grep --no-filename -a 'OPENSSL_VERSION_NUMBER' "${i}"/* | head -1)" tmp="$(mktemp)" touch -r "${v}" "${tmp}" - printf "\n#if 0\n%s\n#endif\n" "${l}" >> "${v}" + printf '\n#if 0\n%s\n#endif\n' "${l}" >> "${v}" touch -r "${tmp}" "${v}" rm -f "${tmp}" fi