diff options
-rwxr-xr-x | lib/keyringer/functions | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/keyringer/functions b/lib/keyringer/functions index 7840b04..e2d23ac 100755 --- a/lib/keyringer/functions +++ b/lib/keyringer/functions @@ -572,7 +572,7 @@ function keyringer_refresh_keys { local recipient="$1" echo "Trying to refresh key $recipient..." - gpg --batch --refresh-keys "$recipient" + gpg --batch --recv-keys "$recipient" } # Check recipient size @@ -671,7 +671,7 @@ function keyringer_check_recipient_key { fi echo "" else - echo "Fatal: no such key $recipient on your OpenPGP keyring." + echo "Fatal: no such key $recipient on your GnuPG keyring." echo "Please retrieve this key yourself or fix the recipient file." exit 1 |