Differences From Artifact [cf54856e03]:
- File
src/OFURLHandler_file.m
— part of check-in
[5831626f68]
at
2018-05-13 19:24:28
on branch trunk
— platform.h: Rename OF_AMIGAOS3 to OF_AMIGAOS_M68K
The reason for this is that, in theory, this also supports versions
older than 3. (user: js, size: 28099) [annotate] [blame] [check-ins using]
To Artifact [63f397cc49]:
- File src/OFURLHandler_file.m — part of check-in [d502e741c4] at 2018-05-20 11:33:54 on branch trunk — OFURLHandler_file: Fix a typo (user: js, size: 28094) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
1112 1113 1114 1115 1116 1117 1118 | errNo: errno]; #elif defined(OF_AMIGAOS) of_string_encoding_t encoding = [OFLocalization encoding]; if (!Rename([[source fileSystemRepresentation] cStringWithEncoding: encoding], [[destination fileSystemRepresentation] | | | 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 | errNo: errno]; #elif defined(OF_AMIGAOS) of_string_encoding_t encoding = [OFLocalization encoding]; if (!Rename([[source fileSystemRepresentation] cStringWithEncoding: encoding], [[destination fileSystemRepresentation] cStringWithEncoding: encoding])) { int errNo; switch (IoErr()) { case ERROR_RENAME_ACROSS_DEVICES: errNo = EXDEV; break; case ERROR_OBJECT_IN_USE: |
︙ | ︙ |