mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Cast DNS SOA serial maximum boundary to long
This will fix i386 builds where the SOA serial value written in API.txt was already of a long type while on x86_64 it was still of an int type.
This commit is contained in:
@@ -1585,7 +1585,7 @@ class dnszone(LDAPObject):
|
||||
label=_('SOA serial'),
|
||||
doc=_('SOA record serial number'),
|
||||
minvalue=1,
|
||||
maxvalue=4294967295,
|
||||
maxvalue=4294967295L,
|
||||
default_from=_create_zone_serial,
|
||||
autofill=True,
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user