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

Diff for /src/usr.bin/cvs/getlog.c between version 1.81 and 1.82

version 1.81, 2008/01/31 10:15:05 version 1.82, 2008/01/31 20:29:16
Line 288 
Line 288 
         int i, found;          int i, found;
         char numb[CVS_REV_BUFSZ], timeb[CVS_TIME_BUFSZ];          char numb[CVS_REV_BUFSZ], timeb[CVS_TIME_BUFSZ];
         struct cvs_argvector *sargv, *wargv;          struct cvs_argvector *sargv, *wargv;
           struct rcs_branch *rb;
           struct rcs_delta *nrdp;
   
         i = found = 0;          i = found = 0;
   
Line 326 
Line 328 
         cvs_printf("revision %s", numb);          cvs_printf("revision %s", numb);
   
         strftime(timeb, sizeof(timeb), "%Y/%m/%d %H:%M:%S", &rdp->rd_date);          strftime(timeb, sizeof(timeb), "%Y/%m/%d %H:%M:%S", &rdp->rd_date);
         cvs_printf("\ndate: %s;  author: %s;  state: %s;\n",          cvs_printf("\ndate: %s;  author: %s;  state: %s;",
             timeb, rdp->rd_author, rdp->rd_state);              timeb, rdp->rd_author, rdp->rd_state);
   
           /*
            * If we are a branch revision, the diff of this revision is stored
            * in place.
            * Otherwise, it is stored in the previous revision as a reversed diff.
            */
           if (RCSNUM_ISBRANCHREV(rdp->rd_num))
                   nrdp = rdp;
           else
                   nrdp = TAILQ_NEXT(rdp, rd_list);
   
           /*
            * We do not write diff stats for the first revision of the default
            * branch, since it was not a diff but a full text.
            */
           if (nrdp != NULL && rdp->rd_num->rn_len == nrdp->rd_num->rn_len) {
                   int added, removed;
                   rcs_delta_stats(nrdp, &added, &removed);
                   if (RCSNUM_ISBRANCHREV(rdp->rd_num))
                           cvs_printf("  lines: +%d -%d", added, removed);
                   else
                           cvs_printf("  lines: +%d -%d", removed, added);
           }
           cvs_printf("\n");
   
           if (!TAILQ_EMPTY(&(rdp->rd_branches))) {
                   cvs_printf("branches:");
                   TAILQ_FOREACH(rb, &(rdp->rd_branches), rb_list) {
                           RCSNUM *branch;
                           branch = rcsnum_revtobr(rb->rb_num);
                           rcsnum_tostr(branch, numb, sizeof(numb));
                           cvs_printf("  %s;", numb);
                           rcsnum_free(branch);
                   }
                   cvs_printf("\n");
           }
   
         cvs_printf("%s", rdp->rd_log);          cvs_printf("%s", rdp->rd_log);
 }  }

Legend:
Removed from v.1.81  
changed lines
  Added in v.1.82