Skip to content
Snippets Groups Projects
Commit 63d595a0 authored by Guenter Knauf's avatar Guenter Knauf
Browse files

fixed wrong var in error message.

parent 15e56c32
No related branches found
No related tags found
No related merge requests found
......@@ -143,7 +143,7 @@ while (<TXT>) {
print CRT "\n";
print CRT "$val\n";
print CRT ("=" x length($val) . "\n");
close(CRT) or die "Couldn't close $file: $!";
close(CRT) or die "Couldn't close $crt: $!";
open(TMP, ">$tmp") or die "Couldn't open $tmp: $!";
print TMP "$val\n";
print TMP "-----BEGIN CERTIFICATE-----\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment