diff options
-rwxr-xr-x | sign-request.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sign-request.in b/sign-request.in index 954789e..c4d9ba7 100755 --- a/sign-request.in +++ b/sign-request.in @@ -23,7 +23,7 @@ while read -r csr; do if ! content=$( openssl req -text -noout -verify -in "${csr_local}" 2>/dev/null ); then - >&2 echo 'verify failed - skipping' + >&2 printf 'verify of %s failed - skipping\n' "${csr_local##*/}" rm "${csr_local}" continue fi |