diff options
Diffstat (limited to 'lib/striconveha.c')
-rw-r--r-- | lib/striconveha.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/striconveha.c b/lib/striconveha.c index 08008d8b..b7dec017 100644 --- a/lib/striconveha.c +++ b/lib/striconveha.c @@ -1,5 +1,5 @@ /* Character set conversion with error handling and autodetection. - Copyright (C) 2002, 2005, 2007, 2009-2024 Free Software Foundation, Inc. + Copyright (C) 2002, 2005, 2007, 2009-2025 Free Software Foundation, Inc. Written by Bruno Haible. This file is free software: you can redistribute it and/or modify @@ -160,7 +160,7 @@ mem_iconveha_notranslit (const char *src, size_t srclen, /* Unsupported from_codeset or to_codeset. Check whether the caller requested autodetection. */ for (alias = autodetect_list; alias != NULL; alias = alias->next) - if (strcmp (from_codeset, alias->name) == 0) + if (streq (from_codeset, alias->name)) { const char * const *encodings; @@ -270,7 +270,7 @@ str_iconveha_notranslit (const char *src, /* Unsupported from_codeset or to_codeset. Check whether the caller requested autodetection. */ for (alias = autodetect_list; alias != NULL; alias = alias->next) - if (strcmp (from_codeset, alias->name) == 0) + if (streq (from_codeset, alias->name)) { const char * const *encodings; |