Changeset 101
- Timestamp:
- Oct 17, 2005, 11:33:06 AM (20 years ago)
- Location:
- CMT/HEAD
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
CMT/HEAD/ChangeLog
r100 r101 1 2005-10-17 <arnault@lal.in2p3.fr> 287 2 3 * source/cmt_cvs.cxx (class CvsImplementation): Protect agains 4 empty protocol level (for backward compatibility) 5 1 6 2005-10-15 <arnault@lal.in2p3.fr> 286 2 7 3 8 * source/cmt_project.cxx (use_action): Consider empty release for 4 Windows (apparently dirs with two backslashes are not found??) 9 Windows (test_directory on Windows does not work with a trailing 10 backslash) 5 11 6 12 2005-10-11 Christian Arnault <arnault@lal.in2p3.fr> 285 -
CMT/HEAD/source/cmt_cvs.cxx
r95 r101 336 336 However old versions only offer as pattern: 337 337 338 .cmtcvsinfos /338 .cmtcvsinfos 339 339 340 340 In this function we'll detect if the effective protocol level satisifies the … … 367 367 found = false; 368 368 369 cmt_string pattern = ".cmtcvsinfos/"; 370 pattern += m_protocol_level; 369 cmt_string pattern = ".cmtcvsinfos"; 370 371 if (m_protocol_level != "") 372 { 373 pattern += "/"; 374 pattern += m_protocol_level; 375 } 371 376 372 377 cmt_string loginfo;
Note:
See TracChangeset
for help on using the changeset viewer.