[BACK]Return to remove.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / cvs

Diff for /src/usr.bin/cvs/remove.c between version 1.29 and 1.30

version 1.29, 2005/07/27 16:42:19 version 1.30, 2005/07/27 17:14:08
Line 181 
Line 181 
                         return (CVS_EX_FILE);                          return (CVS_EX_FILE);
   
                 if (verbosity > 1)                  if (verbosity > 1)
                         cvs_log(LP_INFO, "removed `%s'", cf->cf_name);                          cvs_log(LP_NOTICE, "removed `%s'", cf->cf_name);
                 return (0);                  return (0);
         } else if (cf->cf_cvstat == CVS_FST_REMOVED) {          } else if (cf->cf_cvstat == CVS_FST_REMOVED) {
                 if (verbosity > 1 )                  if (verbosity > 1 )
Line 191 
Line 191 
                 return (0);                  return (0);
         } else {          } else {
                 if (verbosity > 1)                  if (verbosity > 1)
                         cvs_log(LP_INFO, "scheduling file `%s' for removal",                          cvs_log(LP_NOTICE, "scheduling file `%s' for removal",
                             cf->cf_name);                              cf->cf_name);
                 removed++;                  removed++;
         }          }
   
         if (removed != 0) {          if (removed != 0) {
                 if (verbosity > 0)                  if (verbosity > 0)
                         cvs_log(LP_INFO, "use '%s commit' to remove %s "                          cvs_log(LP_NOTICE, "use '%s commit' to remove %s "
                             "permanently", __progname,                              "permanently", __progname,
                             (removed == 1) ? "this file" : "these files");                              (removed == 1) ? "this file" : "these files");
                 return (0);                  return (0);

Legend:
Removed from v.1.29  
changed lines
  Added in v.1.30