From: Silvio Rhatto Date: Mon, 19 Dec 2016 18:08:15 +0000 (-0200) Subject: Removes break statements from keyringer_check_expiration X-Git-Tag: 0.5.0~1 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=ef29f9d23a98b4e18b2400f3dd29b32de81514a7;p=keyringer.git Removes break statements from keyringer_check_expiration --- diff --git a/lib/keyringer/functions b/lib/keyringer/functions index 1d53925..bd87fd6 100755 --- a/lib/keyringer/functions +++ b/lib/keyringer/functions @@ -728,7 +728,6 @@ function keyringer_check_expiration { if [[ -z "$expiry" ]]; then not_expired=1 - break fi if [[ "$seconds" -lt "$expiry" ]]; then @@ -737,7 +736,6 @@ function keyringer_check_expiration { if [[ "$ahead" -gt "$expiry" ]] && [ "$BASENAME" == "check" ]; then echo "Warning: subkey from $recipient will expire soon, on `date --date="@$expiry"`" fi - break fi done