Changeset 2616 for branches/libc-0.6/src/emx
- Timestamp:
- Mar 12, 2006, 3:23:56 PM (19 years ago)
- Location:
- branches/libc-0.6/src/emx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/libc-0.6/src/emx/ChangeLog.LIBC
r2594 r2616 3 3 TODO: open replace on RAMFS fails with error 32! 4 4 5 2006-03-12: knut st. osmundsen <bird-gccos2-spam@anduin.net> 6 - libc: 7 o Fixed wrong target name written into the symlink. 8 5 9 2006-03-09: knut st. osmundsen <bird-gccos2-spam@anduin.net> 6 10 - libc: 7 o #62: Fixed incorrect EOF treatment in getdelim (and in getline since that's just a 11 o #62: Fixed incorrect EOF treatment in getdelim (and in getline since that's just a 8 12 special case of getdelim). 9 13 … … 12 16 o #49: Fixed stat backend so ctime is set, and made fstat, lstat and stat convert birthtime too. 13 17 o #61: Fixed incorrect ENOENT errno on symlink when it should return EEXIST. 14 18 15 19 2006-03-06: knut st. osmundsen <bird-gccos2-spam@anduin.net> 16 20 - libc: 17 21 o #60: Fixed blunder in exec/spawn filehandle inheritance code. 18 22 19 23 2006-03-04: knut st. osmundsen <bird-gccos2-spam@anduin.net> 20 24 - emxomfld: -
branches/libc-0.6/src/emx/src/lib/sys/b_nativeSymlinkCreate.c
r2577 r2616 148 148 if (__predict_true(rc == NO_ERROR)) 149 149 { 150 DosWrite(hf, &p FEas->szSymlink[0], cchTarget, &ul);150 DosWrite(hf, &pszTarget, cchTarget, &ul); 151 151 DosClose(hf); 152 152 LIBCLOG_RETURN_INT(0);
Note:
See TracChangeset
for help on using the changeset viewer.