From: Ethan Jackson Date: Mon, 3 Jan 2011 20:27:50 +0000 (-0800) Subject: python: properly initialize string length on 64bit systems. X-Git-Tag: v1.1.0~538 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=5601839c4565e31405803416c79aecc0db9a40c0;p=sliver-openvswitch.git 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. --- diff --git a/python/ovs/db/types.py b/python/ovs/db/types.py index d42ac7fe8..a3b6ba70d 100644 --- a/python/ovs/db/types.py +++ b/python/ovs/db/types.py @@ -358,7 +358,7 @@ class BaseType(object): elif self.type == StringType: if self.min_length is not None: stmts.append('%s.u.string.minLen = %d;' % (var, self.min_length)) - if self.max_length is not None: + if self.max_length != sys.maxint: stmts.append('%s.u.string.maxLen = %d;' % (var, self.max_length)) elif self.type == UuidType: if self.ref_table is not None: