aboutsummaryrefslogtreecommitdiff
path: root/firma
diff options
context:
space:
mode:
authorrhatto <rhatto>2006-10-12 00:47:15 +0000
committerrhatto <rhatto>2006-10-12 00:47:15 +0000
commit92487aa042cb1afbef98cb483908e817cd9a6333 (patch)
tree22b61adb996311100d18f6ac778369071aa7a51a /firma
parenta71d858a7ffbe3320a47d462f288c25fa8e79a0d (diff)
downloadfirma-92487aa042cb1afbef98cb483908e817cd9a6333.tar.gz
firma-92487aa042cb1afbef98cb483908e817cd9a6333.tar.bz2
GetSubscribersInfo update
Diffstat (limited to 'firma')
-rwxr-xr-xfirma4
1 files changed, 1 insertions, 3 deletions
diff --git a/firma b/firma
index 0fe9465..f62d794 100755
--- a/firma
+++ b/firma
@@ -1704,7 +1704,6 @@ function GetSubscribersInfo {
local key
local keys
local keyid
- local output
if [ "$1" == "help" ]; then
AdminLog "usage: info [all|emails|help]"
@@ -1720,8 +1719,7 @@ function GetSubscribersInfo {
for key in $keys; do
keyid="$($GPG_LIST_KEYS --with-fingerprint $1 2> /dev/null | grep ^fpr | cut -d : -f 10)"
if [ ! -z "$keyid" ]; then
- output="`$GPG --list-keys $key`"
- AdminLog "$output"
+ AdminLog `$GPG --list-keys $key`
fi
done