Fossil

Check-in [1d3256cbca]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix the --setmtime flag on fossil-commit so that it works when changing version, and not just when updating the current version.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 1d3256cbcacc6f018b13247c19822d5860637321
User & Date: drh 2012-10-24 19:04:54.243
Context
2012-10-25
10:27
use utf8 in stash comment editor on Windows, just like the commit comment editor check-in: fb565614db user: jan.nijtmans tags: trunk
2012-10-24
19:04
Fix the --setmtime flag on fossil-commit so that it works when changing version, and not just when updating the current version. check-in: 1d3256cbca user: drh tags: trunk
13:43
Removing superfluous parenthesis in html output. check-in: ad9cf1cad6 user: viriketo tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/update.c.
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
      db_lset_int("checkout", tid);
    }else{
      /* A subset of files have been checked out.  Keep the current
      ** checkout unchanged. */
      db_multi_exec("DELETE FROM vfile WHERE vid!=%d", vid);
    }
    if( !internalUpdate ) undo_finish();
    if( setmtimeFlag ) vfile_check_signature(vid, CKSIG_SETMTIME);
    db_end_transaction(0);
  }
}

/*
** Make sure empty directories are created
*/







|







529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
      db_lset_int("checkout", tid);
    }else{
      /* A subset of files have been checked out.  Keep the current
      ** checkout unchanged. */
      db_multi_exec("DELETE FROM vfile WHERE vid!=%d", vid);
    }
    if( !internalUpdate ) undo_finish();
    if( setmtimeFlag ) vfile_check_signature(tid, CKSIG_SETMTIME);
    db_end_transaction(0);
  }
}

/*
** Make sure empty directories are created
*/