Typo.
authorDr. Stephen Henson <steve@openssl.org>
Fri, 2 May 2003 11:42:17 +0000 (11:42 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Fri, 2 May 2003 11:42:17 +0000 (11:42 +0000)
crypto/x509v3/v3_conf.c

index 1a3448e121729f828d7ed9ac792a0287dee10675..1284d5aaa54fb800d2e19b3dac68ac8a2a1b113e 100644 (file)
@@ -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;