Fossil

Changes On Branch pledge-additions
Login

Changes On Branch pledge-additions

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

Changes In Branch pledge-additions Excluding Merge-Ins

This is equivalent to a diff from 323299cb to 0d11ea05

2018-03-12
03:53
Fix documentation typos reported on the mailing list. ... (check-in: 7989d7cd user: drh tags: trunk)
2018-03-08
04:03
Merge in latest from trunk. ... (Closed-Leaf check-in: 0d11ea05 user: andybradford tags: pledge-additions)
2018-03-07
19:46
Rid the code of the legacy UUID_SIZE macro. Replace it everywhere with either HNAME_MAX or HNAME_LEN_SHA1 or HNAME_LEN_K256, as appropriate. ... (check-in: 323299cb user: drh tags: trunk)
2018-02-28
13:46
Modify an error message to avoid using an unquoted apostrophe. ... (check-in: 61941baf user: mistachkin tags: trunk)
2018-01-22
03:01
Merge in recent fixes from trunk. ... (check-in: c0f94f69 user: andybradford tags: pledge-additions)

Changes to src/checkin.c.

470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
  int showHdr = command==CHANGES && find_option("header", 0, 0);
  int verboseFlag = command==CHANGES && find_option("verbose", "v", 0);
  const char *zIgnoreFlag = find_option("ignore", 0, 1);
  unsigned scanFlags = 0;
  unsigned flags = 0;
  int vid, i;

  fossil_pledge("stdio rpath wpath cpath id flock tty chown");

  /* Load affirmative flag options. */
  for( i=0; i<count(flagDefs); ++i ){
    if( (command==CHANGES || !(flagDefs[i].mask & C_CLASSIFY))
     && find_option(flagDefs[i].option, 0, 0) ){
      flags |= flagDefs[i].mask;
    }







|







470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
  int showHdr = command==CHANGES && find_option("header", 0, 0);
  int verboseFlag = command==CHANGES && find_option("verbose", "v", 0);
  const char *zIgnoreFlag = find_option("ignore", 0, 1);
  unsigned scanFlags = 0;
  unsigned flags = 0;
  int vid, i;

  fossil_pledge("stdio rpath wpath cpath flock tty chown");

  /* Load affirmative flag options. */
  for( i=0; i<count(flagDefs); ++i ){
    if( (command==CHANGES || !(flagDefs[i].mask & C_CLASSIFY))
     && find_option(flagDefs[i].option, 0, 0) ){
      flags |= flagDefs[i].mask;
    }
549
550
551
552
553
554
555


556
557
558
559
560
561
562
      fossil_print("config-db:    %s\n", g.zConfigDbName);
    }
    if( vid ){
      show_common_info(vid, "checkout:", 1, 1);
    }
    db_record_repository_filename(0);
  }



  /* Find and print all requested changes. */
  blob_zero(&report);
  status_report(&report, flags);
  if( blob_size(&report) ){
    if( showHdr ){
      fossil_print(







>
>







549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
      fossil_print("config-db:    %s\n", g.zConfigDbName);
    }
    if( vid ){
      show_common_info(vid, "checkout:", 1, 1);
    }
    db_record_repository_filename(0);
  }

  fossil_pledge("stdio rpath flock tty");

  /* Find and print all requested changes. */
  blob_zero(&report);
  status_report(&report, flags);
  if( blob_size(&report) ){
    if( showHdr ){
      fossil_print(