Un-escape two asterisks to improve compatibility with bash.

PR:		192534
Submitted by:	yaneurabeya@gmail.com
This commit is contained in:
Warren Block 2014-08-11 22:14:36 +00:00
parent be5a313457
commit 8d860ca257
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=45437

View file

@ -234,8 +234,8 @@ for key in ${keyids} ; do
now_s=$( date "+%s" )
# 86400 == # seconds in a normal day
expire_int_d=$(( ( ${expires_s} - ${now_s} ) / 86400 ))
exp_min=$(( 1 \* 365 )) # Min expiry time is 1 year
exp_max=$(( 3 \* 365 + 1 )) # Max expiry time is 3 years
exp_min=$(( 1 * 365 )) # Min expiry time is 1 year
exp_max=$(( 3 * 365 + 1 )) # Max expiry time is 3 years
# We add 1 day because in a 3-year
# period, probability of a leap day
# is 297/400, about 0.74250