summaryrefslogtreecommitdiff
path: root/crypto/x509v3
diff options
context:
space:
mode:
authorsteve <steve>2009-02-14 21:49:34 +0000
committersteve <steve>2009-02-14 21:49:34 +0000
commit0147b1025f8de343a1f34de21510e244270ec5f4 (patch)
tree406e148bf5532935721e3e8e6f2c263c329fb848 /crypto/x509v3
parent4b52e3e676ce25e2349e78fc0972e0313bf7ffc3 (diff)
downloadopenssl-0147b1025f8de343a1f34de21510e244270ec5f4.tar.gz
PR: 1835
Submitted by: Damien Miller <djm@mindrot.org> Approved by: steve@openssl.org Fix various typos.
Diffstat (limited to 'crypto/x509v3')
-rw-r--r--crypto/x509v3/v3_utl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509v3/v3_utl.c b/crypto/x509v3/v3_utl.c
index 706a2b4b4..4a8751722 100644
--- a/crypto/x509v3/v3_utl.c
+++ b/crypto/x509v3/v3_utl.c
@@ -84,7 +84,7 @@ int X509V3_add_value(const char *name, const char *value,
CONF_VALUE *vtmp = NULL;
char *tname = NULL, *tvalue = NULL;
if(name && !(tname = BUF_strdup(name))) goto err;
- if(value && !(tvalue = BUF_strdup(value))) goto err;;
+ if(value && !(tvalue = BUF_strdup(value))) goto err;
if(!(vtmp = (CONF_VALUE *)OPENSSL_malloc(sizeof(CONF_VALUE)))) goto err;
if(!*extlist && !(*extlist = sk_CONF_VALUE_new_null())) goto err;
vtmp->section = NULL;