diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-07-06 14:28:34 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-07-06 14:28:34 -0300 |
commit | f51408e892c350bf8204b8180424b8d6f4bd0f0c (patch) | |
tree | aa9107a9c3d65766a78432dada834b12d6197c4d | |
parent | 7c35a05b8557beb825e682675e3bfd6c53175201 (diff) | |
download | keyringer-f51408e892c350bf8204b8180424b8d6f4bd0f0c.tar.gz keyringer-f51408e892c350bf8204b8180424b8d6f4bd0f0c.tar.bz2 |
Reset 'expiry' on keyringer_check_expiration (closes #62)
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | lib/keyringer/functions | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2014-07-06 - Silvio Rhatto <rhatto@riseup.net> + + Reset 'expiry' on keyringer_check_expiration, reported and fixed + by Jamie (closes #62) + 2014-05-20 - 0.3.6 - Silvio Rhatto <rhatto@riseup.net> Makefile fix diff --git a/lib/keyringer/functions b/lib/keyringer/functions index fdd8439..0360bb4 100755 --- a/lib/keyringer/functions +++ b/lib/keyringer/functions @@ -715,6 +715,7 @@ function keyringer_check_expiration { fi # Check the subkeys + expiry="" for expiry in `gpg --with-colons --fixed-list-mode --list-keys "$recipient" | grep ^sub | cut -d : -f 7`; do if [[ "$seconds" -lt "$expiry" ]]; then not_expired="1" |