From: Joseph Sutton Date: Fri, 21 Jul 2023 00:55:24 +0000 (+1200) Subject: s4:kdc: Avoid operator precedence issues X-Git-Tag: tevent-0.16.0~1210 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85beb883b1784db18f9940a08c5e96ff6b937f58;p=thirdparty%2Fsamba.git s4:kdc: Avoid operator precedence issues Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- diff --git a/source4/kdc/samba_kdc.h b/source4/kdc/samba_kdc.h index 2ae9e860a6d..0cf762ab4d0 100644 --- a/source4/kdc/samba_kdc.h +++ b/source4/kdc/samba_kdc.h @@ -72,6 +72,6 @@ struct samba_kdc_entry { extern struct hdb_method hdb_samba4_interface; -#define CHANGEPW_LIFETIME 60*2 /* 2 minutes */ +#define CHANGEPW_LIFETIME (60*2) /* 2 minutes */ #endif /* _SAMBA_KDC_H_ */