Commit 8c5e375c authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Typo.

parent ce8a2028
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;