- tone down debugging.

This commit is contained in:
jorton 2010-01-15 21:02:49 +00:00
parent 425940e355
commit a74f4c6767

View File

@ -297,10 +297,8 @@ foreach $cert (@certs)
if ($write_current_cert == 1) if ($write_current_cert == 1)
{ {
$pem_file_count++; $pem_file_count++;
print "writing $cert_alias.pem\n";
sysopen(PEM, "$cert_alias.pem", O_WRONLY|O_CREAT|O_EXCL) sysopen(PEM, "$cert_alias.pem", O_WRONLY|O_CREAT|O_EXCL)
|| die("could not write file"); || die("could not write file");
print "opened $cert_alias";
print PEM $cert; print PEM $cert;
print "written $cert_alias.pem\n"; print "written $cert_alias.pem\n";
} }