]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 31 Jan 2001 07:00:50 +0000 (07:00 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 31 Jan 2001 07:00:50 +0000 (07:00 +0000)
2001-01-30  Yong Li  <yong.li@asu.edu>

* iconv/gconv_open.c (__gconv_open): Fix the variable used to
set result->__data[cnt].__flags.
* iconv/iconv_prog.c (main): Correct error handling method name.

ChangeLog
iconv/gconv_open.c
iconv/iconv_prog.c
localedata/ChangeLog

index c35687e09e90b4671245877d8074c1e21d301f16..387020074c93b36cebffe665889837324eb4ff63 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-01-30  Yong Li  <yong.li@asu.edu>
+
+       * iconv/gconv_open.c (__gconv_open): Fix the variable used to
+       set result->__data[cnt].__flags.
+       * iconv/iconv_prog.c (main): Correct error handling method name.
+
 2001-01-29  Ben Collins  <bcollins@debian.org>
 
        * sysdeps/sparc/fpu/fraiseexcpt.c: Include <float.h>.
index a84ed2fb9e957cad4e6a661cbda50722f4e3f1ca..9deeb5363c69656292a5a17f0574334cd18cec41 100644 (file)
@@ -35,7 +35,6 @@ __gconv_open (const char *toset, const char *fromset, __gconv_t *handle,
   __gconv_t result = NULL;
   size_t cnt = 0;
   int res;
-  int conv_flags = 0;
   const char *errhand;
   const char *ignore;
   struct trans_struct *trans = NULL;
@@ -247,7 +246,7 @@ __gconv_open (const char *toset, const char *fromset, __gconv_t *handle,
                 output buffer.  */
              if (cnt < nsteps - 1)
                {
-                 result->__data[cnt].__flags = conv_flags;
+                 result->__data[cnt].__flags = flags;
 
                  /* Allocate the buffer.  */
                  size = (GCONV_NCHAR_GOAL * steps[cnt].__max_needed_to);
@@ -265,7 +264,7 @@ __gconv_open (const char *toset, const char *fromset, __gconv_t *handle,
              else
                {
                  /* Handle the last entry.  */
-                 result->__data[cnt].__flags = conv_flags | __GCONV_IS_LAST;
+                 result->__data[cnt].__flags = flags | __GCONV_IS_LAST;
 
                  break;
                }
index a6e4cd3c1fb03024fbda5551299fe9fa96da02bd..8776192e37cfd3d8ac2895925a5cc2ff642da2e2 100644 (file)
@@ -168,7 +168,7 @@ main (int argc, char *argv[])
       cp = mempcpy (newp, to_code, errhand - to_code);
       while (nslash-- > 0)
        *cp++ = '/';
-      memcpy (cp, "NEEDED", sizeof ("NEEDED"));
+      memcpy (cp, "IGNORE", sizeof ("IGNORE"));
 
       to_code = newp;
     }
index d9bdbc73e5584393f53b30f885f4f06e0ebbfef6..7a4833758f51a57a5814ce065dfae0d01f1499cb 100644 (file)
@@ -1,3 +1,9 @@
+2001-01-30  Ulrich Drepper  <drepper@redhat.com>
+
+       * locales/fi_FI: Remove FIXME comments.
+       * locales/sv_FI: Likewise.
+       Patch by Marko Myllynen <myllynen@lut.fi>.
+
 2001-01-23  Jakub Jelinek  <jakub@redhat.com>
 
        * locales/cs_CZ (yesexpr, noexpr): Add caret prefix.
This page took 0.061525 seconds and 5 git commands to generate.