[BACK]Return to krl.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/krl.c between version 1.10 and 1.11

version 1.10, 2013/02/19 02:12:47 version 1.11, 2013/04/05 00:14:00
Line 500 
Line 500 
         }          }
         debug3("%s: contig %llu last_gap %llu next_gap %llu final %d, costs:"          debug3("%s: contig %llu last_gap %llu next_gap %llu final %d, costs:"
             "list %llu range %llu bitmap %llu new bitmap %llu, "              "list %llu range %llu bitmap %llu new bitmap %llu, "
             "selected 0x%02x%s", __func__, contig, last_gap, next_gap, final,              "selected 0x%02x%s", __func__, (long long unsigned)contig,
             cost_list, cost_range, cost_bitmap, cost_bitmap_restart, new_state,              (long long unsigned)last_gap, (long long unsigned)next_gap, final,
               (long long unsigned)cost_list, (long long unsigned)cost_range,
               (long long unsigned)cost_bitmap,
               (long long unsigned)cost_bitmap_restart, new_state,
             *force_new_section ? " restart" : "");              *force_new_section ? " restart" : "");
         return new_state;          return new_state;
 }  }
Line 537 
Line 540 
              rs != NULL;               rs != NULL;
              rs = RB_NEXT(revoked_serial_tree, &rc->revoked_serials, rs)) {               rs = RB_NEXT(revoked_serial_tree, &rc->revoked_serials, rs)) {
                 debug3("%s: serial %llu:%llu state 0x%02x", __func__,                  debug3("%s: serial %llu:%llu state 0x%02x", __func__,
                     rs->lo, rs->hi, state);                      (long long unsigned)rs->lo, (long long unsigned)rs->hi,
                       state);
   
                 /* Check contiguous length and gap to next section (if any) */                  /* Check contiguous length and gap to next section (if any) */
                 nrs = RB_NEXT(revoked_serial_tree, &rc->revoked_serials, rs);                  nrs = RB_NEXT(revoked_serial_tree, &rc->revoked_serials, rs);
Line 926 
Line 930 
         }          }
   
         format_timestamp(krl->generated_date, timestamp, sizeof(timestamp));          format_timestamp(krl->generated_date, timestamp, sizeof(timestamp));
         debug("KRL version %llu generated at %s%s%s", krl->krl_version,          debug("KRL version %llu generated at %s%s%s",
             timestamp, *krl->comment ? ": " : "", krl->comment);              (long long unsigned)krl->krl_version, timestamp,
               *krl->comment ? ": " : "", krl->comment);
   
         /*          /*
          * 1st pass: verify signatures, if any. This is done to avoid           * 1st pass: verify signatures, if any. This is done to avoid

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11