Subject: | LibCVS unable to handle branches with numbers higher than 10 |
The regular expression in RevisionNumber.pm that "fixes" magic branch
version numbers does not handle branch numbers that have multiple digits
(i.e. 10 and higher) properly.
For example, if it encounters 1.3.0.2 in the output from "cvs log" the
regular expression works fine and properly converts the magic branch
version.
If it encounters 1.3.0.40 in the output from "cvs log", it will not
convert the "magic" branch properly (since there are two digits in the
final digit and the regular expression is looking for [0-9]).