[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.74 and 1.75

version 1.74, 2006/06/16 14:07:42 version 1.75, 2006/06/19 05:05:17
Line 92 
Line 92 
   
         cr.enterdir = NULL;          cr.enterdir = NULL;
         cr.leavedir = NULL;          cr.leavedir = NULL;
         cr.local = cvs_commit_check_conflicts;          cr.fileproc = cvs_commit_check_conflicts;
         cr.remote = NULL;  
         cr.flags = flags;          cr.flags = flags;
   
         if (argc > 0)          if (argc > 0)
Line 105 
Line 104 
                 fatal("%d conflicts found, please correct these first",                  fatal("%d conflicts found, please correct these first",
                     conflicts_found);                      conflicts_found);
   
         cr.local = cvs_commit_local;          cr.fileproc = cvs_commit_local;
         cvs_file_walklist(&files_affected, &cr);          cvs_file_walklist(&files_affected, &cr);
         cvs_file_freelist(&files_affected);          cvs_file_freelist(&files_affected);
   

Legend:
Removed from v.1.74  
changed lines
  Added in v.1.75