[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.38 and 1.39

version 1.38, 2005/07/14 06:50:50 version 1.39, 2005/07/15 08:39:14
Line 210 
Line 210 
         struct rcs_delta *rdp;          struct rcs_delta *rdp;
         struct rcs_access *acp;          struct rcs_access *acp;
   
           nrev = 0;
   
           if (cf->cf_cvstat == CVS_FST_ADDED) {
                   if (verbosity > 0)
                           cvs_log(LP_WARN, "%s has been added, but not committed",
                               cf->cf_name);
                   return (0);
           }
   
         if (cf->cf_cvstat == CVS_FST_UNKNOWN) {          if (cf->cf_cvstat == CVS_FST_UNKNOWN) {
                 if (verbosity > 0)                  if (verbosity > 0)
                         cvs_log(LP_WARN, "nothing known about %s", cf->cf_name);                          cvs_log(LP_WARN, "nothing known about %s", cf->cf_name);
Line 221 
Line 230 
                         cvs_log(LP_INFO, "Logging %s", cf->cf_name);                          cvs_log(LP_INFO, "Logging %s", cf->cf_name);
                 return (0);                  return (0);
         }          }
   
         nrev = 0;  
   
         if (cvs_rcs_getpath(cf, rcspath, sizeof(rcspath)) == NULL)          if (cvs_rcs_getpath(cf, rcspath, sizeof(rcspath)) == NULL)
                 return (CVS_EX_DATA);                  return (CVS_EX_DATA);

Legend:
Removed from v.1.38  
changed lines
  Added in v.1.39