diff options
author | rhatto <rhatto> | 2006-10-09 18:36:22 +0000 |
---|---|---|
committer | rhatto <rhatto> | 2006-10-09 18:36:22 +0000 |
commit | ce661454d8f8e8d31e5723cc1fd248f9aa195c6f (patch) | |
tree | e7df73865f43010a4c57bfb88daaf7fc636103ce | |
parent | 57fac5db4f1f330b233edc1260cd9eeeb6d0b956 (diff) | |
download | firma-ce661454d8f8e8d31e5723cc1fd248f9aa195c6f.tar.gz firma-ce661454d8f8e8d31e5723cc1fd248f9aa195c6f.tar.bz2 |
admin command parsing fix
-rwxr-xr-x | firma | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -1011,6 +1011,18 @@ function ListAdministration { UnsubscribeUser $2 return_code=$? ;; + subscribe) + SubscribeUsers $2 + return_code=$? + ;; + sendkey) + SendListPubkey $2 + return_code=$? + ;; + info) + GetSubscribersInfo $2 + return_code=$? + ;; help|quit) echo >&2 "$1: too many arguments -- $@ (try \"help\")" return_code=1 |