python: properly initialize string length on 64bit systems.
authorEthan Jackson <ethan@nicira.com>
Mon, 3 Jan 2011 20:27:50 +0000 (12:27 -0800)
committerEthan Jackson <ethan@nicira.com>
Tue, 4 Jan 2011 18:30:37 +0000 (10:30 -0800)
commit5601839c4565e31405803416c79aecc0db9a40c0
tree371e9220391af078386ae82df885892a18386bb9
parent0fee489f8428f4c25f3de0ae21cf63c9ef4d1660
python: properly initialize string length on 64bit systems.

types.py was initializing max string length to 2^64 - 1 instead of
UINT_MAX on 64 bit systems.  This commit fixes that problem.
python/ovs/db/types.py