aboutsummaryrefslogtreecommitdiff
path: root/server/wallet-backend
diff options
context:
space:
mode:
authorRuss Allbery <rra@stanford.edu>2008-09-12 16:10:51 +0000
committerRuss Allbery <rra@stanford.edu>2008-09-12 16:10:51 +0000
commit80bdc9d23c79643a5e30637385c5673e92d52bbd (patch)
treec37275d631bd2c59b0c4093af0b787696d0e4dcb /server/wallet-backend
parentb417f09ac51beeb618ecfdb74d81d91543d07848 (diff)
Suppress the argument to store from logging on failures as well.
Diffstat (limited to 'server/wallet-backend')
-rwxr-xr-xserver/wallet-backend2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/wallet-backend b/server/wallet-backend
index c427526..74e0eb0 100755
--- a/server/wallet-backend
+++ b/server/wallet-backend
@@ -286,8 +286,8 @@ sub command {
}
} elsif ($command eq 'store') {
check_args (3, 3, [3], @args);
- $server->store (@args) or failure ($server->error, @_);
splice (@_, 3);
+ $server->store (@args) or failure ($server->error, @_);
} else {
error "unknown command $command";
}