Fix format string for printf

I've gotta be doing this wrong... (I mean git.)

Signed-off-by: Eric F Crist <ecrist@secure-computing.net>
This commit is contained in:
Eric F Crist 2018-02-01 18:03:01 -06:00
parent 933a7dc52f
commit f693420e48

View File

@ -479,7 +479,7 @@ current CA keypair. If you intended to start a new CA, run init-pki first."
echo echo
if [ "$kpass" = "$kpass2" ]; if [ "$kpass" = "$kpass2" ];
then then
printf "$kpass" > "$out_key_pass_tmp" printf "%s" "$kpass" > "$out_key_pass_tmp"
else else
die "Passphrases do not match." die "Passphrases do not match."
fi fi