diff options
author | Richard Levitte <levitte@openssl.org> | 2000-11-14 11:52:16 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2000-11-14 11:52:16 +0100 |
commit | 820aaa5fc54fff1eea1b1fc743749977b7e1375d (patch) | |
tree | b66e19fca0946b7067d61eaa64251232a33f78f4 /crypto | |
parent | Add Rijndael as things to look through. (diff) | |
download | openssl-820aaa5fc54fff1eea1b1fc743749977b7e1375d.tar.xz openssl-820aaa5fc54fff1eea1b1fc743749977b7e1375d.zip |
Typo, was "time" instead of "tim".
Caught by Jeffrey Altman <jaltman@columbia.edu>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/ocsp/ocsp_ext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ocsp/ocsp_ext.c b/crypto/ocsp/ocsp_ext.c index fdfe6b13be..aac4edb1e5 100644 --- a/crypto/ocsp/ocsp_ext.c +++ b/crypto/ocsp/ocsp_ext.c @@ -146,7 +146,7 @@ X509_EXTENSION *OCSP_crlID_new(char *url, long *n, char *tim) if (!(cid->crlNum = ASN1_INTEGER_new())) goto err; if (!(ASN1_INTEGER_set(cid->crlNum, *n))) goto err; } - if (time) + if (tim) { if (!(cid->crlTime = ASN1_GENERALIZEDTIME_new())) goto err; if (!(ASN1_GENERALIZEDTIME_set_string(cid->crlTime, tim))) |