OpenSSL 1.1.1-pre2
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
/* extension creation utilities */
|
||||
|
||||
#include <stdio.h>
|
||||
#include <ctype.h>
|
||||
#include "internal/ctype.h"
|
||||
#include "internal/cryptlib.h"
|
||||
#include <openssl/conf.h>
|
||||
#include <openssl/x509.h>
|
||||
@@ -192,7 +192,7 @@ static int v3_check_critical(const char **value)
|
||||
if ((strlen(p) < 9) || strncmp(p, "critical,", 9))
|
||||
return 0;
|
||||
p += 9;
|
||||
while (isspace((unsigned char)*p))
|
||||
while (ossl_isspace(*p))
|
||||
p++;
|
||||
*value = p;
|
||||
return 1;
|
||||
@@ -212,7 +212,7 @@ static int v3_check_generic(const char **value)
|
||||
} else
|
||||
return 0;
|
||||
|
||||
while (isspace((unsigned char)*p))
|
||||
while (ossl_isspace(*p))
|
||||
p++;
|
||||
*value = p;
|
||||
return gen_type;
|
||||
|
||||
Reference in New Issue
Block a user