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

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

version 1.29, 2005/04/19 16:57:07 version 1.30, 2005/04/20 15:50:54
Line 611 
Line 611 
   
         if ((type == CVS_RESP_UPDEXIST) || (type == CVS_RESP_UPDATED) ||          if ((type == CVS_RESP_UPDEXIST) || (type == CVS_RESP_UPDATED) ||
             (type == CVS_RESP_MERGED) || (type == CVS_RESP_CREATED)) {              (type == CVS_RESP_MERGED) || (type == CVS_RESP_CREATED)) {
                 if (cvs_ent_remove(entfile, ep->ce_name) < 0)                  if ((cvs_ent_remove(entfile, ep->ce_name) < 0) &&
                         cvs_log(LP_WARN, "failed to remove entry for `%s'",                      (type != CVS_RESP_CREATED)) {
                           cvs_log(LP_WARN, "failed to remove entry for '%s`",
                             ep->ce_name);                              ep->ce_name);
                   }
         }          }
   
         if (cvs_ent_add(entfile, ep) < 0) {          if (cvs_ent_add(entfile, ep) < 0) {

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