Diff for /freem/src/fmadm.c between versions 1.11 and 1.12

version 1.11, 2025/03/24 19:25:48 version 1.12, 2025/03/24 20:13:34
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.12  2025/03/24 20:13:34  snw
    *   Set file permissions on freemd.exe on OS/2 in fmadm configure
    *
  *   Revision 1.11  2025/03/24 19:25:48  snw   *   Revision 1.11  2025/03/24 19:25:48  snw
  *   Make fmadm configure copy freem.exe to freemd.exe for daemon operation on OS/2 systems   *   Make fmadm configure copy freem.exe to freemd.exe for daemon operation on OS/2 systems
  *   *
Line 1157  void fm_configure (void) Line 1160  void fm_configure (void)
         unlink (dstfile);          unlink (dstfile);
                   
         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);
           chmod (dstfile, 0755);
           
         if (cp (dstfile, srcfile) != 0) {          if (cp (dstfile, srcfile) != 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);

Removed from v.1.11  
changed lines
  Added in v.1.12


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>