aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-01-27 00:57:29 +0000
committerUlrich Drepper <drepper@redhat.com>2000-01-27 00:57:29 +0000
commit9dbcebe8c043fac8138f18622bb28ce29f309a19 (patch)
tree09234ed2b9786fb7da0da8bc42abf3d345a86e44
parent4b1c1a6ffaf2feba6232dff7a5ceef4ad2d9c482 (diff)
downloadglibc-9dbcebe8c043fac8138f18622bb28ce29f309a19.zip
glibc-9dbcebe8c043fac8138f18622bb28ce29f309a19.tar.gz
glibc-9dbcebe8c043fac8138f18622bb28ce29f309a19.tar.bz2
Update.
2000-01-26 Jakub Jelinek <jakub@redhat.com> * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list (getresgid): Fix a typo. 2000-01-26 Andreas Jaeger <aj@suse.de> * sysdeps/unix/sysv/linux/i386/lxstat.c (__lxstat): Avoid warning about unitialised variable kbuf. * sysdeps/unix/sysv/linux/i386/xstat.c (__xstat): Likewise. * sysdeps/unix/sysv/linux/i386/fxstat.c (__fxstat): Likewise.
-rw-r--r--ChangeLog12
-rw-r--r--sysdeps/unix/sysv/linux/i386/fxstat.c2
-rw-r--r--sysdeps/unix/sysv/linux/i386/lxstat.c2
-rw-r--r--sysdeps/unix/sysv/linux/i386/xstat.c2
-rw-r--r--sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list2
5 files changed, 19 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ca5205a..ca4f32e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2000-01-26 Jakub Jelinek <jakub@redhat.com>
+
+ * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list (getresgid):
+ Fix a typo.
+
+2000-01-26 Andreas Jaeger <aj@suse.de>
+
+ * sysdeps/unix/sysv/linux/i386/lxstat.c (__lxstat): Avoid warning
+ about unitialised variable kbuf.
+ * sysdeps/unix/sysv/linux/i386/xstat.c (__xstat): Likewise.
+ * sysdeps/unix/sysv/linux/i386/fxstat.c (__fxstat): Likewise.
+
2000-01-26 Ulrich Drepper <drepper@cygnus.com>
* locale/programs/ld-collate.c (check_duplicate): Fix printing of error
diff --git a/sysdeps/unix/sysv/linux/i386/fxstat.c b/sysdeps/unix/sysv/linux/i386/fxstat.c
index 2f48dc2..c4e24cf 100644
--- a/sysdeps/unix/sysv/linux/i386/fxstat.c
+++ b/sysdeps/unix/sysv/linux/i386/fxstat.c
@@ -46,7 +46,9 @@ extern int __have_no_stat64;
int
__fxstat (int vers, int fd, struct stat *buf)
{
+#if __ASSUME_STAT64_SYSCALL == 0
struct kernel_stat kbuf;
+#endif
int result;
if (vers == _STAT_VER_KERNEL)
diff --git a/sysdeps/unix/sysv/linux/i386/lxstat.c b/sysdeps/unix/sysv/linux/i386/lxstat.c
index f40bc2b..ee89ec1 100644
--- a/sysdeps/unix/sysv/linux/i386/lxstat.c
+++ b/sysdeps/unix/sysv/linux/i386/lxstat.c
@@ -47,7 +47,9 @@ extern int __have_no_stat64;
int
__lxstat (int vers, const char *name, struct stat *buf)
{
+#if __ASSUME_STAT64_SYSCALL == 0
struct kernel_stat kbuf;
+#endif
int result;
if (vers == _STAT_VER_KERNEL)
diff --git a/sysdeps/unix/sysv/linux/i386/xstat.c b/sysdeps/unix/sysv/linux/i386/xstat.c
index 7dd8355..7f71a11 100644
--- a/sysdeps/unix/sysv/linux/i386/xstat.c
+++ b/sysdeps/unix/sysv/linux/i386/xstat.c
@@ -47,7 +47,9 @@ extern int __have_no_stat64;
int
__xstat (int vers, const char *name, struct stat *buf)
{
+#if __ASSUME_STAT64_SYSCALL == 0
struct kernel_stat kbuf;
+#endif
int result;
if (vers == _STAT_VER_KERNEL)
diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list b/sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list
index ad104f6..77c0e26 100644
--- a/sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list
+++ b/sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list
@@ -32,7 +32,7 @@ shutdown - shutdown 2 __shutdown shutdown
socketpair - socketpair 4 __socketpair socketpair
getresuid - getresuid 3 getresuid
-getresgid - getresgid 3 getresuid
+getresgid - getresgid 3 getresgid
# System calls with wrappers.
rt_sigaction - rt_sigaction 4 __syscall_rt_sigaction