diff options
author | Andreas Jaeger <aj@suse.de> | 2000-09-20 08:26:37 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-09-20 08:26:37 +0000 |
commit | 6bf22cc723f6153500da75a9bcec661c37efc077 (patch) | |
tree | 03a6f9f119ca85f446cb941cd29ee3749346f8b8 | |
parent | a066186c1833862d71cb139825bf02c1dc4ccbe1 (diff) | |
download | glibc-6bf22cc723f6153500da75a9bcec661c37efc077.tar.gz glibc-6bf22cc723f6153500da75a9bcec661c37efc077.tar.xz glibc-6bf22cc723f6153500da75a9bcec661c37efc077.zip |
Update.
2000-09-20 Andreas Jaeger <aj@suse.de> * iconvdata/Makefile (generated): Add tst-tables.out. * intl/Makefile (generated): Add test output. 2000-09-19 Andreas Jaeger <aj@suse.de> * sunrpc/clnt_simp.c (callrpc): Fix write beyond end of buffer. Reported by Jens-Uwe Mager <jum@helios.de>.
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | INSTALL | 1 | ||||
-rw-r--r-- | README.template | 1 | ||||
-rw-r--r-- | iconvdata/Makefile | 3 | ||||
-rw-r--r-- | sunrpc/clnt_simp.c | 2 |
5 files changed, 16 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 78264eb0e0..78fbc1e83b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2000-09-20 Andreas Jaeger <aj@suse.de> + + * iconvdata/Makefile (generated): Add tst-tables.out. + + * intl/Makefile (generated): Add test output. + +2000-09-19 Andreas Jaeger <aj@suse.de> + + * sunrpc/clnt_simp.c (callrpc): Fix write beyond end of buffer. + Reported by Jens-Uwe Mager <jum@helios.de>. + 2000-09-18 Ulrich Drepper <drepper@redhat.com> * version.h (VERSION): Bump to 2.1.94. diff --git a/INSTALL b/INSTALL index a7e484a757..502b43a45a 100644 --- a/INSTALL +++ b/INSTALL @@ -384,6 +384,7 @@ following patterns: m68k-*-linux mips*-*-linux powerpc-*-linux + s390-*-linux sparc-*-linux sparc64-*-linux diff --git a/README.template b/README.template index a12d8ed26c..7fdb78e45d 100644 --- a/README.template +++ b/README.template @@ -17,6 +17,7 @@ configurations: arm-*-linuxaout Linux-2.x on ARM using a.out binaries mips*-*-linux-gnu Linux-2.x on MIPS ia64-*-linux-gnu Linux-2.x on ia64 + s390-*-linux-gnu Linux-2.x on IBM S/390 Former releases of this library (version 1.09.1 and perhaps earlier versions) used to run on the following configurations: diff --git a/iconvdata/Makefile b/iconvdata/Makefile index d6717a4c89..b819c87046 100644 --- a/iconvdata/Makefile +++ b/iconvdata/Makefile @@ -178,7 +178,8 @@ generated-modules := $(gen-8bit-modules) $(gen-8bit-gap-modules) \ $(gen-special-modules) generated = $(generated-modules:=.h) $(generated-modules:=.stmp) \ - iconv-test.out iconv-rules tst-loading.mtrace mtrace-tst-loading + iconv-test.out iconv-rules tst-loading.mtrace \ + mtrace-tst-loading tst-tables.out ifdef objpfx generated += gconv-modules endif diff --git a/sunrpc/clnt_simp.c b/sunrpc/clnt_simp.c index e1e7e2ab73..19c03b0ba7 100644 --- a/sunrpc/clnt_simp.c +++ b/sunrpc/clnt_simp.c @@ -128,7 +128,7 @@ callrpc (const char *host, u_long prognum, u_long versnum, u_long procnum, crp->oldprognum = prognum; crp->oldversnum = versnum; (void) strncpy (crp->oldhost, host, 255); - crp->oldhost[256] = '\0'; + crp->oldhost[255] = '\0'; } tottimeout.tv_sec = 25; tottimeout.tv_usec = 0; |