forked from pool/ca-certificates
Accepting request 49242 from Base:System
Copy from Base:System/ca-certificates based on submit request 49242 from user lnussel OBS-URL: https://build.opensuse.org/request/show/49242 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ca-certificates?expand=0&rev=8
This commit is contained in:
parent
72507f14c3
commit
4f89af53bc
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 27 14:58:03 UTC 2010 - lnussel@suse.de
|
||||||
|
|
||||||
|
- catch FileNotFoundException (bnc#623365)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri May 21 12:46:55 UTC 2010 - mvyskocil@suse.cz
|
Fri May 21 12:46:55 UTC 2010 - mvyskocil@suse.cz
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ Name: ca-certificates
|
|||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Group: Productivity/Networking/Security
|
Group: Productivity/Networking/Security
|
||||||
Version: 1
|
Version: 1
|
||||||
Release: 5
|
Release: 8
|
||||||
Summary: Utilities for system wide CA certificate installation
|
Summary: Utilities for system wide CA certificate installation
|
||||||
Source0: update-ca-certificates
|
Source0: update-ca-certificates
|
||||||
Source1: update-ca-certificates.8
|
Source1: update-ca-certificates.8
|
||||||
|
@ -51,7 +51,6 @@ public class keystore
|
|||||||
throws java.security.KeyStoreException,
|
throws java.security.KeyStoreException,
|
||||||
java.security.NoSuchAlgorithmException,
|
java.security.NoSuchAlgorithmException,
|
||||||
java.security.cert.CertificateException,
|
java.security.cert.CertificateException,
|
||||||
java.io.FileNotFoundException,
|
|
||||||
java.io.IOException
|
java.io.IOException
|
||||||
{
|
{
|
||||||
char[] password = null;
|
char[] password = null;
|
||||||
@ -149,7 +148,13 @@ public class keystore
|
|||||||
int removed = 0;
|
int removed = 0;
|
||||||
|
|
||||||
for (int i = 0; i < certs.length; ++i) {
|
for (int i = 0; i < certs.length; ++i) {
|
||||||
BufferedInputStream f = new BufferedInputStream(new FileInputStream(cadirname+"/"+certs[i]));
|
BufferedInputStream f;
|
||||||
|
try {
|
||||||
|
f = new BufferedInputStream(new FileInputStream(cadirname+"/"+certs[i]));
|
||||||
|
} catch (java.io.FileNotFoundException ex) {
|
||||||
|
System.err.println("skipping " + certs[i] + ": file not found");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
String marker = "-----BEGIN CERTIFICATE-----";
|
String marker = "-----BEGIN CERTIFICATE-----";
|
||||||
boolean found = false;
|
boolean found = false;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user