]> sourceware.org Git - glibc.git/commitdiff
(from_euc_tw): Fix return value of TO_LOOP.
authorUlrich Drepper <drepper@redhat.com>
Wed, 26 Mar 2003 07:58:49 +0000 (07:58 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 26 Mar 2003 07:58:49 +0000 (07:58 +0000)
iconvdata/euc-tw.c

index 6674dad397f5c25dc653210375946c28a3d86d8c..7f10af8e93877fda8fe85990e5836c1cb02f5c0f 100644 (file)
@@ -1,5 +1,5 @@
 /* Mapping tables for EUC-TW handling.
-   Copyright (C) 1998, 1999, 2000-2002 Free Software Foundation, Inc.
+   Copyright (C) 1998, 1999, 2000-2002, 2003 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
 
        if (__builtin_expect (found, 1) == 0)                                 \
          {                                                                   \
            /* We ran out of space.  */                                       \
-           result = __GCONV_INCOMPLETE_INPUT;                                \
+           result = __GCONV_FULL_OUTPUT;                                     \
            break;                                                            \
          }                                                                   \
        if (__builtin_expect (found, 1) != __UNKNOWN_10646_CHAR)              \
            if (__builtin_expect (found, 1) == 0)                             \
              {                                                               \
                /* We ran out of space.  */                                   \
-               result = __GCONV_INCOMPLETE_INPUT;                            \
+               result = __GCONV_FULL_OUTPUT;                                 \
                break;                                                        \
              }                                                               \
            if (__builtin_expect (found, 0) == __UNKNOWN_10646_CHAR)          \
This page took 0.0442 seconds and 5 git commands to generate.