summaryrefslogtreecommitdiffstats
path: root/crypto/x509v3/v3_conf.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-05-17 20:05:36 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-05-17 20:05:36 +0000
commit703126f027b62b382379d276cd1cf8b174aa5d23 (patch)
tree931c462eb07d06356393b41415c6dd773e193c7d /crypto/x509v3/v3_conf.c
parent2cf9fcdac94947d5abd8423b64796d06a12d0579 (diff)
Various clarifications to extension docs: change the name of literal
extensions from RAW to DER to avoid confusion with raw extensions. Update NEWS file.
Diffstat (limited to 'crypto/x509v3/v3_conf.c')
-rw-r--r--crypto/x509v3/v3_conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509v3/v3_conf.c b/crypto/x509v3/v3_conf.c
index 91cc7ebfaa..aca8ff1f08 100644
--- a/crypto/x509v3/v3_conf.c
+++ b/crypto/x509v3/v3_conf.c
@@ -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;