diff options
author | Werner Koch <[email protected]> | 2004-08-24 18:13:15 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2004-08-24 18:13:15 +0000 |
commit | d851bdf579077d66e1d8f552f6bd51d4ac1dc08d (patch) | |
tree | e66ab0089cba888d786a31de1b2b1750fe955013 | |
parent | * gpg-agent.c: New option --max-cache-ttl. Suggested by Alexander (diff) | |
download | gnupg-d851bdf579077d66e1d8f552f6bd51d4ac1dc08d.tar.gz gnupg-d851bdf579077d66e1d8f552f6bd51d4ac1dc08d.zip |
Fixed typo in ocsp OID.
-rw-r--r-- | sm/ChangeLog | 4 | ||||
-rw-r--r-- | sm/certlist.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/sm/ChangeLog b/sm/ChangeLog index ab362e842..a8139e2e0 100644 --- a/sm/ChangeLog +++ b/sm/ChangeLog @@ -1,3 +1,7 @@ +2004-08-24 Werner Koch <[email protected]> + + * certlist.c: Fixed typo in ocsp OID. + 2004-08-18 Werner Koch <[email protected]> * certlist.c (gpgsm_cert_use_ocsp_p): New. diff --git a/sm/certlist.c b/sm/certlist.c index 983732317..018ad47ff 100644 --- a/sm/certlist.c +++ b/sm/certlist.c @@ -40,7 +40,7 @@ static const char oid_kp_clientAuth[] = "1.3.6.1.5.5.7.3.2"; static const char oid_kp_codeSigning[] = "1.3.6.1.5.5.7.3.3"; static const char oid_kp_emailProtection[]= "1.3.6.1.5.5.7.3.4"; static const char oid_kp_timeStamping[] = "1.3.6.1.5.5.7.3.8"; -static const char oid_kp_ocspSigning[] = "1.3.6.1.5.6.7.3.9"; +static const char oid_kp_ocspSigning[] = "1.3.6.1.5.5.7.3.9"; /* Return 0 if the cert is usable for encryption. A MODE of 0 checks for signing a MODE of 1 checks for encryption, a MODE of 2 checks |