diff options
-rwxr-xr-x | firma | 30 |
1 files changed, 15 insertions, 15 deletions
@@ -1011,21 +1011,6 @@ function ListAdministration { UnsubscribeUser $2 return_code=$? ;; - subscribe) - shift - SubscribeUsers $* - return_code=$? - ;; - sendkey) - shift - SendListPubkey $* - return_code=$? - ;; - info) - shift - GetSubscribersInfo $* - return_code=$? - ;; help|quit) echo >&2 "$1: too many arguments -- $@ (try \"help\")" return_code=1 @@ -1042,6 +1027,21 @@ function ListAdministration { echo >&2 "$1: too many arguments -- $@ (try \"help\")" return_code=1 ;; + subscribe) + shift + SubscribeUsers $* + return_code=$? + ;; + sendkey) + shift + SendListPubkey $* + return_code=$? + ;; + info) + shift + GetSubscribersInfo $* + return_code=$? + ;; *) echo >&2 "Command not found -- $1 (try \"help\")" return_code=1 |