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

Diff for /src/usr.bin/cvs/commit.c between version 1.82 and 1.83

version 1.82, 2006/12/31 15:11:23 version 1.83, 2007/01/02 23:55:15
Line 186 
Line 186 
         int l, openflags, rcsflags;          int l, openflags, rcsflags;
         char *d, *f, rbuf[24], nbuf[24];          char *d, *f, rbuf[24], nbuf[24];
         CVSENTRIES *entlist;          CVSENTRIES *entlist;
         char *attic, *repo, *rcsfile;          char *attic, *repo, *rcsfile, *p;
   
         cvs_log(LP_TRACE, "cvs_commit_local(%s)", cf->file_path);          cvs_log(LP_TRACE, "cvs_commit_local(%s)", cf->file_path);
         cvs_file_classify(cf, NULL, 0);          cvs_file_classify(cf, NULL, 0);
Line 365 
Line 365 
         else {          else {
                 cvs_log(LP_NOTICE, "checking in '%s'; revision %s -> %s",                  cvs_log(LP_NOTICE, "checking in '%s'; revision %s -> %s",
                     cf->file_path, rbuf, nbuf);                      cf->file_path, rbuf, nbuf);
           }
   
           if (cvs_server_active == 1) {
                   if ((p = strrchr(cf->file_rpath, ',')) != NULL)
                           *p = '\0';
   
                   if (cf->file_status == FILE_REMOVED) {
                           cvs_server_send_response("Remove-entry %s/",
                               cf->file_wd);
                           cvs_remote_output(cf->file_rpath);
                   }
   
                   if (p != NULL)
                           *p = ',';
         }          }
 }  }
   

Legend:
Removed from v.1.82  
changed lines
  Added in v.1.83