diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/mass-revoke.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mass-revoke.php b/scripts/mass-revoke.php index 35eb24f..18c036b 100755 --- a/scripts/mass-revoke.php +++ b/scripts/mass-revoke.php @@ -36,7 +36,7 @@ $in = fopen("php://stdin", "r"); # The restriction on revoked timestamp os only "to be sure" for non-Org certs, # but Org certs (email and serer) may be included multiple times in the output # of DumpWeakCerts.pl (once for each OrgAdmin). -while($in_string = rtrim(fgets($in, 255))) { +while($in_string = rtrim(fgets($in))) { list($cert_type, $cert_email, $owner_name, $cert_expire, $cert_CN, $reason, $cert_serial, $cert_recid) = explode("\t", $in_string); |