Discussion:
Maximum value for revison numbers?
LennardL
2009-03-27 14:06:55 UTC
Permalink
hi folks,

does anyone know about a maximum value for revision numbers?
since i'm writing a "small" java cvs client for my application i need to set
the revision numbers manually in some cases. therefore i need to increase
the revision number on the client and commit the file. and the question is
"are there any limitations for increasing" or for example is this revision
number valid : "1.2.98989..." ?

thx for hints
LennardL
--
View this message in context: http://www.nabble.com/Maximum-value-for-revison-numbers--tp22742368p22742368.html
Sent from the Gnu - Cvs - Info mailing list archive at Nabble.com.
Larry Jones
2009-03-28 19:11:32 UTC
Permalink
Post by LennardL
does anyone know about a maximum value for revision numbers?
The maximum value of a long int on your system, which is at least
2147483647. Most of the code treats them as strings to avoid imposing
any limit, but there are a few places that (incorrectly) convert them to
numbers.
--
Larry Jones

I think your train of thought is a runaway. -- Calvin's Mom
Loading...