From: Ulrich Drepper Date: Wed, 25 Apr 2007 15:14:36 +0000 (+0000) Subject: (strip): Allow ':' X-Git-Tag: cvs/fedora-glibc-20070504T0917~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=82faa1779b37e23a143120d754562d8f50258b42;p=thirdparty%2Fglibc.git (strip): Allow ':' --- diff --git a/iconv/gconv_charset.h b/iconv/gconv_charset.h index c18abec5787..8882f4319ff 100644 --- a/iconv/gconv_charset.h +++ b/iconv/gconv_charset.h @@ -1,5 +1,5 @@ /* Charset name normalization. - Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + Copyright (C) 2001,2002,2003,2004,2005,2007 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 2001. @@ -30,7 +30,7 @@ strip (char *wp, const char *s) while (*s != '\0') { if (__isalnum_l (*s, _nl_C_locobj_ptr) - || *s == '_' || *s == '-' || *s == '.' || *s == ',') + || *s == '_' || *s == '-' || *s == '.' || *s == ',' || *s == ':') *wp++ = __toupper_l (*s, _nl_C_locobj_ptr); else if (*s == '/') {