[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.49 and 1.50

version 1.49, 2005/12/30 02:03:28 version 1.50, 2005/12/30 16:42:13
Line 134 
Line 134 
 cvs_getlog_pre_exec(struct cvsroot *root)  cvs_getlog_pre_exec(struct cvsroot *root)
 {  {
         if (root->cr_method != CVS_METHOD_LOCAL) {          if (root->cr_method != CVS_METHOD_LOCAL) {
                 if (log_honly)                  if (log_honly == 1)
                         cvs_sendarg(root, "-h", 0);                          cvs_sendarg(root, "-h", 0);
                 if (log_notags)                  if (log_notags == 1)
                         cvs_sendarg(root, "-N", 0);                          cvs_sendarg(root, "-N", 0);
                 if (log_rfonly)                  if (log_rfonly == 1)
                         cvs_sendarg(root, "-R", 0);                          cvs_sendarg(root, "-R", 0);
                 if (log_lhonly)                  if (log_lhonly == 1)
                         cvs_sendarg(root, "-t", 0);                          cvs_sendarg(root, "-t", 0);
         }          }
   
         return (0);          return (0);
 }  }
   
Line 224 
Line 223 
   
         cvs_rcs_getpath(cf, rcspath, sizeof(rcspath));          cvs_rcs_getpath(cf, rcspath, sizeof(rcspath));
   
         if (log_rfonly) {          if (log_rfonly == 1) {
                 cvs_printf("%s\n", rcspath);                  cvs_printf("%s\n", rcspath);
                 return (0);                  return (0);
         }          }

Legend:
Removed from v.1.49  
changed lines
  Added in v.1.50