mirror of git://sourceware.org/git/glibc.git
Update.
1998-10-23 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* rt/aio.h: Move __aio_init to...
* include/aio.h: ...here.
1998-10-24 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/unix/sysv/linux/mips/bits/fcntl.h: Remove duplicate
definition of O_LARGEFILE.
1998-10-24 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/unix/sysv/linux/alpha/pathconf.c (__pathconf): Use path
as first argument to statfs.
1998-10-24 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/generic/setenv.c (setenv): Add braces around ambiguous else.
1998-10-24 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* malloc/mtrace.c: Include <string.h> for strlen.
This commit is contained in:
parent
692fd0170e
commit
b0772d3be5
23
ChangeLog
23
ChangeLog
|
|
@ -1,3 +1,26 @@
|
||||||
|
1998-10-23 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
||||||
|
|
||||||
|
* rt/aio.h: Move __aio_init to...
|
||||||
|
* include/aio.h: ...here.
|
||||||
|
|
||||||
|
1998-10-24 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/mips/bits/fcntl.h: Remove duplicate
|
||||||
|
definition of O_LARGEFILE.
|
||||||
|
|
||||||
|
1998-10-24 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/alpha/pathconf.c (__pathconf): Use path
|
||||||
|
as first argument to statfs.
|
||||||
|
|
||||||
|
1998-10-24 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
||||||
|
|
||||||
|
* sysdeps/generic/setenv.c (setenv): Add braces around ambiguous else.
|
||||||
|
|
||||||
|
1998-10-24 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
||||||
|
|
||||||
|
* malloc/mtrace.c: Include <string.h> for strlen.
|
||||||
|
|
||||||
1998-10-24 Roland McGrath <roland@baalperazim.frob.com>
|
1998-10-24 Roland McGrath <roland@baalperazim.frob.com>
|
||||||
|
|
||||||
* sysdeps/mach/hurd/bits/environments.h: New file.
|
* sysdeps/mach/hurd/bits/environments.h: New file.
|
||||||
|
|
|
||||||
|
|
@ -115,11 +115,13 @@ setenv (name, value, replace)
|
||||||
|
|
||||||
size = 0;
|
size = 0;
|
||||||
if (__environ != NULL)
|
if (__environ != NULL)
|
||||||
|
{
|
||||||
for (ep = __environ; *ep != NULL; ++ep)
|
for (ep = __environ; *ep != NULL; ++ep)
|
||||||
if (!strncmp (*ep, name, namelen) && (*ep)[namelen] == '=')
|
if (!strncmp (*ep, name, namelen) && (*ep)[namelen] == '=')
|
||||||
break;
|
break;
|
||||||
else
|
else
|
||||||
++size;
|
++size;
|
||||||
|
}
|
||||||
|
|
||||||
if (__environ == NULL || *ep == NULL)
|
if (__environ == NULL || *ep == NULL)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue