|
|
| version 1.7, 2025/04/10 15:27:39 | version 1.8, 2025/04/10 15:31:25 |
|---|---|
| Line 25 | Line 25 |
| * 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.8 2025/04/10 15:31:25 snw | |
| * Attempt to fix DosCopy calls for OS/2 | |
| * | |
| * Revision 1.7 2025/04/10 15:27:39 snw | * Revision 1.7 2025/04/10 15:27:39 snw |
| * Detect Devuan distribution and fix OS/2 problem with iniconf.c | * Detect Devuan distribution and fix OS/2 problem with iniconf.c |
| * | * |
| Line 381 int modify_profile_string(char *file, ch | Line 384 int modify_profile_string(char *file, ch |
| #if !defined(__OS2__) | #if !defined(__OS2__) |
| cp (file, output_filename); | cp (file, output_filename); |
| #else | #else |
| DosCopy (output_filename, file); | DosCopy (output_filename, file, 1); |
| #endif | #endif |
| return changed; | return changed; |