3c4386c Fix upper bound of password policy grace limit

2 files Authored by rcritten 2 years ago, Committed by frenaud 2 years ago,
    Fix upper bound of password policy grace limit
    
    It was defined as an unsigned value (2**32) because it
    originally was. During the review an additional setting of
    disabled (-1) was added so the value needed to be signed.
    The upper bound needs to be 2**31 which is provided by
    the xmlrpc client MAXINT import.
    
    Fixes: https://pagure.io/freeipa/issue/9243
    
    Signed-off-by: Rob Crittenden <rcritten@redhat.com>
    Reviewed-By: Michal Polovka <mpolovka@redhat.com>