Fossil

Check-in [417e7662e5]
Login

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

Overview
Comment:Fix to the omitsign setting.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 417e7662e5232e58af3cabcc81f6294a24239d66
User & Date: drh 2008-06-06 20:05:06.000
Context
2008-06-06
20:11
Change the "omitsign" setting into "clearsign" and invert its sense. check-in: 3f706b92a5 user: drh tags: trunk
20:05
Fix to the omitsign setting. check-in: 417e7662e5 user: drh tags: trunk
2008-06-02
15:18
Documentation tweaks. check-in: 42ed55e82f user: drh tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/checkin.c.
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
  Blob cksum1b;          /* Checksum recorded in the manifest */
 
  url_proxy_options();
  noSign = find_option("nosign","",0)!=0;
  zComment = find_option("comment","m",1);
  forceFlag = find_option("force", "f", 0)!=0;
  db_must_be_within_tree();
  noSign = db_get_int("omitsign", 0)|noSign;
  verify_all_options();

  /*
  ** Autosync if requested.
  */
  autosync(AUTOSYNC_PULL);
  







|







345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
  Blob cksum1b;          /* Checksum recorded in the manifest */
 
  url_proxy_options();
  noSign = find_option("nosign","",0)!=0;
  zComment = find_option("comment","m",1);
  forceFlag = find_option("force", "f", 0)!=0;
  db_must_be_within_tree();
  noSign = db_get_boolean("omitsign", 0)|noSign;
  verify_all_options();

  /*
  ** Autosync if requested.
  */
  autosync(AUTOSYNC_PULL);