Various clarifications to extension docs: change the name of literal
[openssl.git] / crypto / x509v3 / v3_conf.c
index 91cc7ebfaa65c09d5ac848517d8489c71de4d35b..aca8ff1f086930e3de19d9e919d7b97a6627a61f 100644 (file)
@@ -212,7 +212,7 @@ static int v3_check_critical(char **value)
 static int v3_check_generic(char **value)
 {
        char *p = *value;
-       if((strlen(p) < 4) || strncmp(p, "RAW:,", 4)) return 0;
+       if((strlen(p) < 4) || strncmp(p, "DER:,", 4)) return 0;
        p+=4;
        while(isspace((unsigned char)*p)) p++;
        *value = p;