about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2007-04-17 18:36:00 +0000
committerUlrich Drepper <drepper@redhat.com>2007-04-17 18:36:00 +0000
commitb7674b110703d2d94f0531a6e2ac9d1e67c014e1 (patch)
treeceebe02458929ab8e1cf6f839a65ddbe36825eaf
parentfaf3ad6937494480b4b02098a6ccf232aa6ff823 (diff)
downloadglibc-b7674b110703d2d94f0531a6e2ac9d1e67c014e1.tar.gz
glibc-b7674b110703d2d94f0531a6e2ac9d1e67c014e1.tar.xz
glibc-b7674b110703d2d94f0531a6e2ac9d1e67c014e1.zip
[BZ #4368]
2007-04-17  Ulrich Drepper  <drepper@redhat.com>
	[BZ #4368]
	* stdlib/stdlib.h: Remove obsolete part of comment for realpath.
-rw-r--r--ChangeLog5
-rw-r--r--stdlib/stdlib.h11
2 files changed, 10 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index d8e7c890e9..66bd482a14 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-04-17  Ulrich Drepper  <drepper@redhat.com>
+
+	[BZ #4368]
+	* stdlib/stdlib.h: Remove obsolete part of comment for realpath.
+
 2007-04-16  Ulrich Drepper  <drepper@redhat.com>
 
 	[BZ #4364]
diff --git a/stdlib/stdlib.h b/stdlib/stdlib.h
index af27d09e3a..aa5f514caa 100644
--- a/stdlib/stdlib.h
+++ b/stdlib/stdlib.h
@@ -747,12 +747,11 @@ extern char *canonicalize_file_name (__const char *__name)
 #endif
 
 #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
-/* Return the canonical absolute name of file NAME.  The last file name
-   component need not exist, and may be a symlink to a nonexistent file.
-   If RESOLVED is null, the result is malloc'd; otherwise, if the canonical
-   name is PATH_MAX chars or more, returns null with `errno' set to
-   ENAMETOOLONG; if the name fits in fewer than PATH_MAX chars, returns the
-   name in RESOLVED.  */
+/* Return the canonical absolute name of file NAME.  If RESOLVED is
+   null, the result is malloc'd; otherwise, if the canonical name is
+   PATH_MAX chars or more, returns null with `errno' set to
+   ENAMETOOLONG; if the name fits in fewer than PATH_MAX chars,
+   returns the name in RESOLVED.  */
 extern char *realpath (__const char *__restrict __name,
 		       char *__restrict __resolved) __THROW __wur;
 #endif