diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-12-19 16:08:15 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-12-19 16:08:15 -0200 |
commit | ef29f9d23a98b4e18b2400f3dd29b32de81514a7 (patch) | |
tree | c720bc8672f9ecbbbfd56048bdc1a6e4e219ce51 /lib | |
parent | bcf239c6f069ad6c8d433f89a86b909f432ffab1 (diff) | |
download | keyringer-ef29f9d23a98b4e18b2400f3dd29b32de81514a7.tar.gz keyringer-ef29f9d23a98b4e18b2400f3dd29b32de81514a7.tar.bz2 |
Removes break statements from keyringer_check_expiration
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/keyringer/functions | 2 |
1 files changed, 0 insertions, 2 deletions
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 |