From: Adam Dickmeiss Date: Fri, 4 Oct 2002 11:24:39 +0000 (+0000) Subject: Use case-insensitive compare for charset names X-Git-Tag: YAZ.1.9.1~7 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=25eb3d7b8af9f8857903460121746afc1738c467 Use case-insensitive compare for charset names --- diff --git a/zutil/charneg.c b/zutil/charneg.c index d4a9383..80dc3e7 100644 --- a/zutil/charneg.c +++ b/zutil/charneg.c @@ -1,5 +1,5 @@ /* - $ $Id: charneg.c,v 1.5 2002-09-24 08:05:42 adam Exp $ + $ $Id: charneg.c,v 1.6 2002-10-04 11:24:39 adam Exp $ * Helper functions for Character Set and Language Negotiation - 3 */ @@ -42,13 +42,13 @@ static int get_form(const char *charset) int form = -1; - if (!strcmp (charset, "UCS-2")) + if (!yaz_matchstr(charset, "UCS-2")) form = 2; - if (!strcmp (charset, "UCS-4")) + if (!yaz_matchstr(charset, "UCS-4")) form = 4; - if (!strcmp (charset, "UTF-16")) + if (!yaz_matchstr(charset, "UTF-16")) form = 5; - if (!strcmp (charset, "UTF-8")) + if (!yaz_matchstr(charset, "UTF-8")) form = 8; return form;