]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 21 Apr 2004 18:58:31 +0000 (18:58 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 21 Apr 2004 18:58:31 +0000 (18:58 +0000)
2004-04-21  Jakub Jelinek  <jakub@redhat.com>

* posix/tst-chmod.c (do_test): Fix a typo.
* elf/lateglobal.c (main): Fix error checks.
Patch by Stephen Clarke <stephen.clarke@st.com>.

* manual/ctype.texi (isblank, iswblank): Mark as ISO functions,
mention they have been added in ISO C99.
Reported by Ben Pfaff <blp@cs.stanford.edu>.

2004-03-31  H.J. Lu  <hongjiu.lu@intel.com>

* sysdeps/ieee754/ldbl-128/bits/huge_vall.h: Fix typo.

ChangeLog
elf/lateglobal.c
manual/ctype.texi
posix/tst-chmod.c
sysdeps/ieee754/ldbl-128/bits/huge_vall.h

index bb2a76505e7b62d80d01846b7099ec20b1e2d4c4..1bd630afdaf35ccf7784af4dc6765591468a4a38 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+2004-04-21  Jakub Jelinek  <jakub@redhat.com>
+
+       * posix/tst-chmod.c (do_test): Fix a typo.
+       * elf/lateglobal.c (main): Fix error checks.
+       Patch by Stephen Clarke <stephen.clarke@st.com>.
+
+       * manual/ctype.texi (isblank, iswblank): Mark as ISO functions,
+       mention they have been added in ISO C99.
+       Reported by Ben Pfaff <blp@cs.stanford.edu>.
+
+2004-03-31  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * sysdeps/ieee754/ldbl-128/bits/huge_vall.h: Fix typo.
+
 2004-04-20  Jakub Jelinek  <jakub@redhat.com>
 
        * sysdeps/unix/sysv/linux/shm_open.c (shm_unlink): Change EPERM into
index 2f6c2692a65adb7ede678024dd4163313f1e6a74..4a1a7cd085bfaf2ccd3cd32c019b610707a12616 100644 (file)
@@ -13,14 +13,14 @@ main (void)
   mtrace ();
 
   h[0] = dlopen ("ltglobmod1.so", RTLD_LAZY);
-  if (h == NULL)
+  if (h[0] == NULL)
     {
       printf ("%s: cannot open %s: %s",
              __FUNCTION__, "ltglobmod1.so", dlerror ());
       exit (EXIT_FAILURE);
     }
   h[1] = dlopen ("ltglobmod2.so", RTLD_LAZY);
-  if (h == NULL)
+  if (h[1] == NULL)
     {
       printf ("%s: cannot open %s: %s",
              __FUNCTION__, "ltglobmod2.so", dlerror ());
index 1117363a4bb24e64961c74fb707b53f55d036dc0..b51e8815b94be61c4f159c949d973aba29108f4d 100644 (file)
@@ -159,10 +159,10 @@ vertical tab
 
 @cindex blank character
 @comment ctype.h
-@comment GNU
+@comment ISO
 @deftypefun int isblank (int @var{c})
 Returns true if @var{c} is a blank character; that is, a space or a tab.
-This function is a GNU extension.
+This function has been added in @w{ISO C99}.
 @end deftypefun
 
 @cindex graphic character
@@ -595,10 +595,11 @@ characters as well.
 
 @cindex blank character
 @comment wctype.h
-@comment GNU
+@comment ISO
 @deftypefun int iswblank (wint_t @var{wc})
 Returns true if @var{wc} is a blank character; that is, a space or a tab.
-This function is a GNU extension.  It is declared in @file{wchar.h}.
+This function has been added in @w{ISO C99}.  It is declared in
+@file{wchar.h}.
 @end deftypefun
 
 @node Using Wide Char Classes, Wide Character Case Conversion, Classification of Wide Characters, Character Handling
index 7be61f0ccb14aac80023f9a0aacbe3adb46792c6..d37e4820fa26dee236ab028915b907a3331cef8a 100644 (file)
@@ -1,5 +1,5 @@
 /* Test for chmod functions.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 2000.
 
@@ -72,7 +72,7 @@ do_test (int argc, char *argv[])
   buf = (char *) alloca (buflen);
 
   /* Create the directory name.  */
-  snprintf (buf, buflen, "%schmoddirXXXXXX", builddir);
+  snprintf (buf, buflen, "%s/chmoddirXXXXXX", builddir);
 
   if (mkdtemp (buf) == NULL)
     {
index d22a949bad49bb725b5a73a21e2d177ad485e7f3..7042a211f7f18eaf3724c2e21fe1c4e0e5fe8eb8 100644 (file)
@@ -45,7 +45,7 @@ typedef union { unsigned char __c[16]; long double __ld; } __huge_vall_t;
 #  define HUGE_VALL    (__extension__ \
                         ((__huge_vall_t) { __c : __HUGE_VALL_bytes }).__ld)
 # else
-static __huge_val_t __huge_val = { __HUGE_VAL_bytes };
-#  define HUGE_VALL    (__huge_val.__d)
+static __huge_vall_t __huge_vall = { __HUGE_VALL_bytes };
+#  define HUGE_VALL    (__huge_vall.__ld)
 # endif
 #endif