From f4927c3bc43662f5669e5d7ce74fb307a45d37a2 Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Thu, 29 May 2014 17:04:18 +0200 Subject: Fix capitalisation of ia5String --- lib/x509/x509.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/x509/x509.c b/lib/x509/x509.c index c52feb8f8a..2d642e04e8 100644 --- a/lib/x509/x509.c +++ b/lib/x509/x509.c @@ -1833,7 +1833,7 @@ static int decode_user_notice(const void *data, size_t size, } if (strcmp(choice_type, "utf8String") != 0 - && strcmp(choice_type, "IA5String") != 0 + && strcmp(choice_type, "ia5String") != 0 && strcmp(choice_type, "bmpString") != 0 && strcmp(choice_type, "visibleString") != 0) { gnutls_assert(); -- cgit v1.2.1