Bug 499994 Use unsigned const integers in ssltunnel for things that should never be signed

r=ted
This commit is contained in:
timeless@mozdev.org 2009-06-24 22:16:00 +02:00
parent 43d5f221c2
commit 25485b9128

View File

@ -158,9 +158,9 @@ private:
// These are suggestions. If the number of ports to proxy on * 2
// is greater than either of these, then we'll use that value instead.
const PRInt32 INITIAL_THREADS = 1;
const PRInt32 MAX_THREADS = 5;
const PRInt32 DEFAULT_STACKSIZE = (512 * 1024);
const PRUint32 INITIAL_THREADS = 1;
const PRUint32 MAX_THREADS = 5;
const PRUint32 DEFAULT_STACKSIZE = (512 * 1024);
// global data
string nssconfigdir;