summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2014-05-29 17:05:16 +0200
committerNikos Mavrogiannopoulos <nmav@redhat.com>2014-05-29 17:05:16 +0200
commit7db75ea5712908e9aac07db00d3f7f2072870e6b (patch)
tree81b4e56d1119c1574dd265d4dec8d48c922d3342
parenta3670ba4dd6998a67bbc34d29b3d5defb69091f4 (diff)
downloadgnutls-7db75ea5712908e9aac07db00d3f7f2072870e6b.tar.gz
Fix capitalisation of ia5String
-rw-r--r--lib/x509/x509.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/x509/x509.c b/lib/x509/x509.c
index af67e669d9..6c0175c48e 100644
--- a/lib/x509/x509.c
+++ b/lib/x509/x509.c
@@ -1889,7 +1889,7 @@ static int decode_user_notice(const void* data, size_t size, gnutls_datum_t *txt
goto cleanup;
}
- if (strcmp(choice_type, "utf8String") != 0 && strcmp(choice_type, "IA5String") != 0 &&
+ if (strcmp(choice_type, "utf8String") != 0 && strcmp(choice_type, "ia5String") != 0 &&
strcmp(choice_type, "bmpString") != 0 && strcmp(choice_type, "visibleString") != 0)
{
gnutls_assert();