summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Roeckx <kurt@roeckx.be>2014-05-29 10:25:01 +0200
committerNikos Mavrogiannopoulos <nmav@redhat.com>2014-05-29 17:02:57 +0200
commit1eb8e41e800ebaef9df814da3d3b635df90a289c (patch)
tree5a4f446d8cecd2aa2d15da13533786dd83bd051a
parenteacbca967eadf8156e9e7d2c12e288e1aa6af221 (diff)
downloadgnutls-1eb8e41e800ebaef9df814da3d3b635df90a289c.tar.gz
Fix capitalisation of ia5String
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
-rw-r--r--lib/x509/x509_ext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/x509/x509_ext.c b/lib/x509/x509_ext.c
index ea6a49683c..6d7421e439 100644
--- a/lib/x509/x509_ext.c
+++ b/lib/x509/x509_ext.c
@@ -1593,7 +1593,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();