[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.98 and 1.99

version 1.98, 2014/12/01 21:58:46 version 1.99, 2016/10/13 20:51:25
Line 17 
Line 17 
  */   */
   
 #include <unistd.h>  #include <unistd.h>
   #include <stdlib.h>
 #include <string.h>  #include <string.h>
 #include <errno.h>  #include <errno.h>
 #include <ctype.h>  #include <ctype.h>
Line 276 
Line 277 
   
                         cvs_printf("\t%s: %s\n", sym->rs_name,                          cvs_printf("\t%s: %s\n", sym->rs_name,
                             rcsnum_tostr(rev, numb, sizeof(numb)));                              rcsnum_tostr(rev, numb, sizeof(numb)));
                         rcsnum_free(rev);                          free(rev);
                 }                  }
         }          }
   
Line 393 
Line 394 
                         branch = rcsnum_revtobr(rb->rb_num);                          branch = rcsnum_revtobr(rb->rb_num);
                         rcsnum_tostr(branch, numb, sizeof(numb));                          rcsnum_tostr(branch, numb, sizeof(numb));
                         cvs_printf("  %s;", numb);                          cvs_printf("  %s;", numb);
                         rcsnum_free(branch);                          free(branch);
                 }                  }
                 cvs_printf("\n");                  cvs_printf("\n");
         }          }

Legend:
Removed from v.1.98  
changed lines
  Added in v.1.99