mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Update.
1999-04-17 Thorsten Kukuk <kukuk@suse.de> * timezone/zic.c (dolink): Append complete path ot only filename to ../ list.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
1999-04-17 Thorsten Kukuk <kukuk@suse.de>
|
||||||
|
|
||||||
|
* timezone/zic.c (dolink): Append complete path ot only filename
|
||||||
|
to ../ list.
|
||||||
|
|
||||||
1999-04-17 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
1999-04-17 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
||||||
|
|
||||||
* iconvdata/ibm874.c (TABLES, CHARSET_NAME): Follow name change.
|
* iconvdata/ibm874.c (TABLES, CHARSET_NAME): Follow name change.
|
||||||
|
@ -1,3 +1,14 @@
|
|||||||
|
1999-04-16 Andreas Jaeger <aj@arthur.rhein-neckar.de>
|
||||||
|
|
||||||
|
* sysdeps/arm/Implies: Removed since cmpxchg/no-cmpxchg
|
||||||
|
doesn't exist anymore.
|
||||||
|
* sysdeps/i386/Implies: Likewise.
|
||||||
|
* sysdeps/m68k/Implies: Likewise.
|
||||||
|
* sysdeps/mips/Implies: Likewise.
|
||||||
|
* sysdeps/powerpc/Implies: Likewise.
|
||||||
|
* sysdeps/sparc/sparc32/Implies: Likewise.
|
||||||
|
* sysdeps/sparc/sparc64/Implies: Likewise.
|
||||||
|
|
||||||
1999-04-15 Ulrich Drepper <drepper@cygnus.com>
|
1999-04-15 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* sysdeps/alpha/bits/semaphore.h: Removed.
|
* sysdeps/alpha/bits/semaphore.h: Removed.
|
||||||
|
@ -613,13 +613,13 @@ const char * const tofile;
|
|||||||
(void) exit(EXIT_FAILURE);
|
(void) exit(EXIT_FAILURE);
|
||||||
|
|
||||||
result = link(fromname, toname);
|
result = link(fromname, toname);
|
||||||
#if (HAVE_SYMLINK - 0)
|
#if (HAVE_SYMLINK - 0)
|
||||||
if (result != 0) {
|
if (result != 0) {
|
||||||
char *s = (char *) tofile;
|
char *s = (char *) tofile;
|
||||||
register char * symlinkcontents = NULL;
|
register char *symlinkcontents = NULL;
|
||||||
while ((s = strchr(s+1, '/')) != NULL)
|
while ((s = strchr(s+1, '/')) != NULL)
|
||||||
symlinkcontents = ecatalloc(symlinkcontents, "../");
|
symlinkcontents = ecatalloc(symlinkcontents, "../");
|
||||||
symlinkcontents = ecatalloc(symlinkcontents, fromfile);
|
symlinkcontents = ecatalloc(symlinkcontents, fromname);
|
||||||
|
|
||||||
result = symlink(symlinkcontents, toname);
|
result = symlink(symlinkcontents, toname);
|
||||||
if (result == 0)
|
if (result == 0)
|
||||||
|
Reference in New Issue
Block a user