aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmd/mbf/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/mbf/main.go')
-rw-r--r--cmd/mbf/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/mbf/main.go b/cmd/mbf/main.go
index cbb6f7b2..b8516baa 100644
--- a/cmd/mbf/main.go
+++ b/cmd/mbf/main.go
@@ -489,7 +489,7 @@ func main() {
cc, cancel := context.WithDeadline(context.Background(), daemonDeadline())
defer cancel()
- if _err := cancelRemote(cc, &addr, a); _err != nil {
+ if _err := cancelRemote(cc, &addr, a, false); _err != nil {
log.Println(err)
}
}
@@ -523,7 +523,7 @@ func main() {
c.NewCommand(
"abort",
"Abort all pending cures on the daemon",
- func([]string) error { return abortRemote(ctx, &addr) },
+ func([]string) error { return abortRemote(ctx, &addr, false) },
)
{