Changeset 2577
- Timestamp:
- Mar 8, 2006, 12:30:28 AM (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
r2570 r2577 3 3 TODO: open replace on RAMFS fails with error 32! 4 4 5 2006-03-07: knut st. osmundsen <bird-gccos2-spam@anduin.net> 6 - libc: 7 o #61: Fixed incorrect ENOENT errno on symlink when it should return EEXIST. 8 5 9 2006-03-06: knut st. osmundsen <bird-gccos2-spam@anduin.net> 6 10 - libc: -
branches/libc-0.6/src/emx/src/lib/sys/b_nativeSymlinkCreate.c
r2522 r2577 153 153 } 154 154 155 struct stat s; 155 156 if (rc == ERROR_EAS_NOT_SUPPORTED) 156 157 rc = -EOPNOTSUPP; 158 else if ( rc == ERROR_OPEN_FAILED 159 && !__libc_back_fsNativeFileStat(pszNativePath, &s)) 160 rc = -EEXIST; 157 161 else 158 162 rc = -__libc_native2errno(rc);
Note:
See TracChangeset
for help on using the changeset viewer.