Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/bouncycastle/asn1/cms/SCVPReqRes.java')
-rw-r--r--src/main/java/org/bouncycastle/asn1/cms/SCVPReqRes.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/org/bouncycastle/asn1/cms/SCVPReqRes.java b/src/main/java/org/bouncycastle/asn1/cms/SCVPReqRes.java
index c8413636..e9b91eb5 100644
--- a/src/main/java/org/bouncycastle/asn1/cms/SCVPReqRes.java
+++ b/src/main/java/org/bouncycastle/asn1/cms/SCVPReqRes.java
@@ -46,7 +46,8 @@ public class SCVPReqRes
public SCVPReqRes(ContentInfo response)
{
- this(null, response);
+ this.request = null; // use of this confuses earlier JDKs
+ this.response = response;
}
public SCVPReqRes(ContentInfo request, ContentInfo response)