about summary refs log tree commit diff
path: root/stdlib/test-canon.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-05-16 06:14:36 +0000
committerUlrich Drepper <drepper@redhat.com>2002-05-16 06:14:36 +0000
commitf7501ae6f14a1b27a4f98bdaf4f2aad929cf68b7 (patch)
tree7795c494c2ccc1028fe51d074b33dd2afab0efd4 /stdlib/test-canon.c
parent4e960bbf4ef07f7ef2d9888ddd7419dc4c8cfbf9 (diff)
downloadglibc-f7501ae6f14a1b27a4f98bdaf4f2aad929cf68b7.tar.gz
glibc-f7501ae6f14a1b27a4f98bdaf4f2aad929cf68b7.tar.xz
glibc-f7501ae6f14a1b27a4f98bdaf4f2aad929cf68b7.zip
Update.
	* stdlib/canonicalize.c (canonicalize): Rename to __realpath and
	don't define static.  Remove old __realpath function.  TC1 of
	POSIX 2001 will allow the second parameter to be NULL.
	* stdlib/test-canon.c: Comment out test for NULL as second
	parameter of realpath.

	* time/offtime.c (__offtime): Set errno if overflow is detected.
Diffstat (limited to 'stdlib/test-canon.c')
-rw-r--r--stdlib/test-canon.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/stdlib/test-canon.c b/stdlib/test-canon.c
index e1beafd332..6b7375afd9 100644
--- a/stdlib/test-canon.c
+++ b/stdlib/test-canon.c
@@ -1,5 +1,5 @@
 /* Test program for returning the canonical absolute name of a given file.
-   Copyright (C) 1996, 1997, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1996, 1997, 2000, 2002 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by David Mosberger <davidm@azstarnet.com>.
 
@@ -132,6 +132,8 @@ do_test (int argc, char ** argv)
       ++errors;
     }
 
+#if 0
+  /* This is now allowed.  The test is invalid.  */
   errno = 0;
   if (realpath ("/", NULL) != NULL || errno != EINVAL)
     {
@@ -139,6 +141,7 @@ do_test (int argc, char ** argv)
 	      " for realpath(...,NULL)\n", argv[0]);
       ++errors;
     }
+#endif
 
   errno = 0;
   if (realpath ("", buf) != NULL || errno != ENOENT)