diff options
author | Jameson Rollins <jrollins@finestructure.net> | 2010-10-06 17:37:54 -0400 |
---|---|---|
committer | Jameson Rollins <jrollins@finestructure.net> | 2010-10-06 17:41:27 -0400 |
commit | cdf1a5acbfc09742c3d04de038722b273381f78d (patch) | |
tree | 057c0fffa0f17c4420379a580f25fcbfa8e5029c /src/share/ma/remove_certifier | |
parent | e1ba8a123a9a75bce92a044990f02d8ac28135b3 (diff) |
Fix more calls to gpg_shere, finishing what was started in 90166e0bb8e4ebc1c1174d9bc2021c604b7a1bd7
There were another calls to gpg_sphere that were packing everything
into a single argument. Since we fixed the need to do that, we fix
all these other calls that were fixed in the first round.
Diffstat (limited to 'src/share/ma/remove_certifier')
-rw-r--r-- | src/share/ma/remove_certifier | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/share/ma/remove_certifier b/src/share/ma/remove_certifier index 51c7ee7..9f5be25 100644 --- a/src/share/ma/remove_certifier +++ b/src/share/ma/remove_certifier @@ -37,12 +37,12 @@ else fi # delete the requested key from the sphere keyring -if gpg_sphere "--delete-key --batch --yes 0x${keyID}!" ; then +if gpg_sphere --delete-key --batch --yes "0x${keyID}!" ; then # delete key from core keyring as well gpg_core --delete-key --batch --yes "0x${keyID}!" # update the trustdb for the authentication keyring - gpg_sphere "--check-trustdb" + gpg_sphere --check-trustdb log info "Identity certifier removed." else |