|
|
| version 1.15, 2025/03/24 20:58:05 | version 1.16, 2025/03/24 20:59:58 |
|---|---|
| Line 24 | Line 24 |
| * along with FreeM. If not, see <https://www.gnu.org/licenses/>. | * along with FreeM. If not, see <https://www.gnu.org/licenses/>. |
| * | * |
| * $Log$ | * $Log$ |
| * Revision 1.16 2025/03/24 20:59:58 snw | |
| * Try using DosCopy API instead of built-in cp function on OS/2 | |
| * | |
| * Revision 1.15 2025/03/24 20:58:05 snw | * Revision 1.15 2025/03/24 20:58:05 snw |
| * Try using DosCopy API instead of built-in cp function on OS/2 | * Try using DosCopy API instead of built-in cp function on OS/2 |
| * | * |
| Line 1174 void fm_configure (void) | Line 1177 void fm_configure (void) |
| fprintf (stderr, "fmadm: running on OS/2; will copy %s to %s\n", srcfile, dstfile); | fprintf (stderr, "fmadm: running on OS/2; will copy %s to %s\n", srcfile, dstfile); |
| if (DosCopy (srcfile, dstfile, 1, 0L) != 0) { | if (DosCopy (srcfile, dstfile, 1) != 0) { |
| fprintf (stderr, "fmadm: fatal error copying %s to %s\n", srcfile, dstfile); | fprintf (stderr, "fmadm: fatal error copying %s to %s\n", srcfile, dstfile); |
| exit (1); | exit (1); |
| } | } |