diff options
| author | Russ Allbery <rra@stanford.edu> | 2010-08-25 18:01:37 -0700 | 
|---|---|---|
| committer | Russ Allbery <rra@stanford.edu> | 2010-08-25 18:01:37 -0700 | 
| commit | e91c0b93355b28617f7c0d756026856762ece242 (patch) | |
| tree | 35c4fb8ab35ec5b8d140a0b7e869848a1fac39a9 /server/wallet-backend | |
| parent | 602ff7584d3668c36b1bf5fd43988e6f45eceb48 (diff) | |
Imported Upstream version 0.12
Diffstat (limited to 'server/wallet-backend')
| -rwxr-xr-x | server/wallet-backend | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/server/wallet-backend b/server/wallet-backend index 0a611db..52e9857 100755 --- a/server/wallet-backend +++ b/server/wallet-backend @@ -147,7 +147,7 @@ sub command {      if ($command eq 'acl') {          my $action = shift @args;          if ($action eq 'add') { -            check_args (3, 3, [], @args); +            check_args (3, 3, [3], @args);              $server->acl_add (@args) or failure ($server->error, @_);          } elsif ($action eq 'create') {              check_args (1, 1, [], @args); @@ -164,7 +164,7 @@ sub command {                  failure ($server->error, @_);              }          } elsif ($action eq 'remove') { -            check_args (3, 3, [], @args); +            check_args (3, 3, [3], @args);              $server->acl_remove (@args) or failure ($server->error, @_);          } elsif ($action eq 'rename') {              check_args (2, 2, [], @args);  | 
