[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.95 and 1.96

version 1.95, 2010/07/30 21:47:18 version 1.96, 2013/06/03 17:04:35
Line 376 
Line 376 
                 int added, removed;                  int added, removed;
                 rcs_delta_stats(nrdp, &added, &removed);                  rcs_delta_stats(nrdp, &added, &removed);
                 if (RCSNUM_ISBRANCHREV(rdp->rd_num))                  if (RCSNUM_ISBRANCHREV(rdp->rd_num))
                         cvs_printf("  lines: +%d -%d", added, removed);                          cvs_printf("  lines: +%d -%d;", added, removed);
                 else                  else
                         cvs_printf("  lines: +%d -%d", removed, added);                          cvs_printf("  lines: +%d -%d;", removed, added);
         }          }
   
           if (rdp->rd_commitid != NULL)
                   printf("  commitid: %s;", rdp->rd_commitid);
   
         cvs_printf("\n");          cvs_printf("\n");
   
         if (!TAILQ_EMPTY(&(rdp->rd_branches))) {          if (!TAILQ_EMPTY(&(rdp->rd_branches))) {

Legend:
Removed from v.1.95  
changed lines
  Added in v.1.96