summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bgp-controller.lua2
-rw-r--r--zebra-controller.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/bgp-controller.lua b/bgp-controller.lua
index 0938a89..dfe27e2 100644
--- a/bgp-controller.lua
+++ b/bgp-controller.lua
@@ -18,6 +18,6 @@ function expert(self)
end
function startstop(self)
- return controllerfunctions.handle_startstop(self, self.model.startstop_service, self.model.getstatus, self.clientdata)
+ return controllerfunctions.handle_startstop(self, self.model.startstop_service, self.clientdata)
end
diff --git a/zebra-controller.lua b/zebra-controller.lua
index 113a819..6e6f7b3 100644
--- a/zebra-controller.lua
+++ b/zebra-controller.lua
@@ -14,7 +14,7 @@ function details(self)
end
function startstop(self)
- return controllerfunctions.handle_startstop(self, self.model.startstop_service, self.model.getstatus, self.clientdata)
+ return controllerfunctions.handle_startstop(self, self.model.startstop_service, self.clientdata)
end
function expert(self)