[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.92 and 1.93

version 1.92, 2009/03/23 15:13:58 version 1.93, 2009/03/26 17:30:04
Line 210 
Line 210 
   
         cvs_file_classify(cf, cvs_directory_tag);          cvs_file_classify(cf, cvs_directory_tag);
   
           if (cf->file_type == CVS_DIR) {
                   if (verbosity > 1)
                           cvs_log(LP_ERR, "Logging %s", cf->file_path);
                   return;
           }
   
         if (cf->file_rcs == NULL) {          if (cf->file_rcs == NULL) {
                 return;                  return;
         } else if (cf->file_status == FILE_ADDED) {          } else if (cf->file_status == FILE_ADDED) {
                 if (verbosity > 0)                  if (verbosity > 0)
                         cvs_log(LP_ERR, "%s has been added, but not committed",                          cvs_log(LP_ERR, "%s has been added, but not committed",
                             cf->file_path);                              cf->file_path);
                 return;  
         }  
   
         if (cf->file_type == CVS_DIR) {  
                 if (verbosity > 1)  
                         cvs_log(LP_NOTICE, "Logging %s", cf->file_path);  
                 return;                  return;
         }          }
   

Legend:
Removed from v.1.92  
changed lines
  Added in v.1.93