about summary refs log tree commit diff
path: root/posix/tst-chmod.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-04-21 18:58:31 +0000
committerUlrich Drepper <drepper@redhat.com>2004-04-21 18:58:31 +0000
commitb33ed4326d7d5a0f2ab07df4dfe723520d95a33e (patch)
treeeeda429fc7149ba7b3fee8c50d6c6e27d2a8300e /posix/tst-chmod.c
parentf9a06dc1b5f83ddd6448c6bf80dfe9e02eb97a3d (diff)
downloadglibc-b33ed4326d7d5a0f2ab07df4dfe723520d95a33e.tar.gz
glibc-b33ed4326d7d5a0f2ab07df4dfe723520d95a33e.tar.xz
glibc-b33ed4326d7d5a0f2ab07df4dfe723520d95a33e.zip
Update.
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.
Diffstat (limited to 'posix/tst-chmod.c')
-rw-r--r--posix/tst-chmod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/tst-chmod.c b/posix/tst-chmod.c
index 7be61f0ccb..d37e4820fa 100644
--- a/posix/tst-chmod.c
+++ b/posix/tst-chmod.c
@@ -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)
     {