From: Dr. Stephen Henson Date: Fri, 2 May 2003 11:42:17 +0000 (+0000) Subject: Typo. X-Git-Tag: OpenSSL_0_9_7c~110 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8c5e375c8e04c424d0f82dc9e90488aa05e891d5;p=oweals%2Fopenssl.git Typo. --- diff --git a/crypto/x509v3/v3_conf.c b/crypto/x509v3/v3_conf.c index 1a3448e121..1284d5aaa5 100644 --- a/crypto/x509v3/v3_conf.c +++ b/crypto/x509v3/v3_conf.c @@ -236,7 +236,7 @@ static int v3_check_critical(char **value) static int v3_check_generic(char **value) { char *p = *value; - if ((strlen(p) < 4) || strncmp(p, "DER:,", 4)) return 0; + if ((strlen(p) < 4) || strncmp(p, "DER:", 4)) return 0; p+=4; while (isspace((unsigned char)*p)) p++; *value = p;