On Wed, 2006-01-18 at 00:18 -0500, David Walluck wrote: > There is some strangeness is some of the options. The cache size, for > example, is negative (-33). This might happen on Sun as well, I am not sure. The Azureus developers helped track this down. Cache size is derived from Runtime.getRuntime().maxMemory(), for which we return Long.MAX_VALUE. Subsequent math on this overflows as we cast to an integer. My latest SRPM has a patch. AG