aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-12-21 16:33:57 +0000
committerUlrich Drepper <drepper@redhat.com>1999-12-21 16:33:57 +0000
commitbef248950aa7624e21c404948e8e5a7a3f2b83b7 (patch)
treef2f3a5106e28a44ab2961ff5d89d26e71e28e243
parentf16d401988a32de982e2ba8054f14b1fb94f2000 (diff)
downloadglibc-bef248950aa7624e21c404948e8e5a7a3f2b83b7.zip
glibc-bef248950aa7624e21c404948e8e5a7a3f2b83b7.tar.gz
glibc-bef248950aa7624e21c404948e8e5a7a3f2b83b7.tar.bz2
Update.
* sysdeps/unix/sysv/linux/pread.c: Fix typo.
-rw-r--r--ChangeLog2
-rw-r--r--manual/install.texi3
-rw-r--r--sysdeps/unix/sysv/linux/pread.c2
3 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ab5b446..8a35238 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
1999-12-21 Andreas Schwab <schwab@suse.de>
+ * sysdeps/unix/sysv/linux/pread.c: Fix typo.
+
* include/unistd.h: Declare __libc_lseek.
1999-12-21 Andreas Jaeger <aj@suse.de>
diff --git a/manual/install.texi b/manual/install.texi
index 3f98b27..bd6beb6 100644
--- a/manual/install.texi
+++ b/manual/install.texi
@@ -260,7 +260,8 @@ You can install glibc somewhere other than where you configured it to go
by setting the @code{install_root} variable on the command line for
@samp{make install}. The value of this variable is prepended to all the
paths for installation. This is useful when setting up a chroot
-environment or preparing a binary distribution.
+environment or preparing a binary distribution. The directory should be
+specified with an absolute file name.
Glibc 2.1 includes two daemons, @code{nscd} and @code{utmpd}, which you
may or may not want to run. @code{nscd} caches name service lookups; it
diff --git a/sysdeps/unix/sysv/linux/pread.c b/sysdeps/unix/sysv/linux/pread.c
index 86c6dd1..3634a70 100644
--- a/sysdeps/unix/sysv/linux/pread.c
+++ b/sysdeps/unix/sysv/linux/pread.c
@@ -56,7 +56,7 @@ __libc_pread (fd, buf, count, offset)
return result;
}
-strong_alias (__libc_pread, pread)
+strong_alias (__libc_pread, __pread)
weak_alias (__libc_pread, pread)
# define __libc_pread(fd, buf, count, offset) \