|
From: <bo...@ma...> - 2002-07-08 17:40:00
|
I'm using the CVSNT server 57f . If i add a file it's modification date will be: 2018, Jun 24. The problem is that server sends entry line like: /Test.txt/0/Initial Test.txt// And MacCVSPro tries to convert string: "Initial Test.txt/" to date. Is it a bug in CVSNT?! I've fixed the problem with the following patch in MacCVS Pro, but i'm not sure if the problem is in MacCVSPro or CVSNT. Index: maccvs25/CVS Engine/Source/CCVSRepository.cp =================================================================== RCS file: /cvsroot/maccvspro/maccvs25/CVS Engine/Source/CCVSRepository.cp,v retrieving revision 1.124 diff -r1.124 CCVSRepository.cp 5952c5952 < if ( pstrTimeStamp[0] == 0 ) --- > if ( pstrTimeStamp[0] == 0 || bInAddRevisionInfo) Regards, Miklos. |