On Apr 04 11:11, Igor Zinovik wrote: > CVSROOT: /cvs > Module name: src > Changes by: [email protected] 2010/04/04 11:11:11 > > Modified files: > usr.bin/cvs : add.c > > Log message: > /tmp/cvsY7cCmY
Commit message i wanted to commit was this: OpenCVS is very annoying and incorrect when user tries to add several files at a time. OpenCVS does the following: # touch a b c # opencvs add a b c opencvs add: scheduling file 'a' for addition opencvs add: use 'opencvs commit' to add this file permanently opencvs add: scheduling file 'b' for addition opencvs add: use 'opencvs commit' to add this file permanently opencvs add: scheduling file 'c' for addition opencvs add: use 'opencvs commit' to add this file permanently This behaviour was added in -r 1.48 of add.c file. This commit makes OpenCVS behave like GNU cvs: # touch a b c # opencvs add a b c opencvs add: scheduling file 'a' for addition opencvs add: scheduling file 'b' for addition opencvs add: scheduling file 'c' for addition opencvs add: use 'opencvs commit' to add these files permanently ok deraadt@, xsa@
