summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dxr3.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/dxr3.c b/dxr3.c
index 7a5f20d..5195d5c 100644
--- a/dxr3.c
+++ b/dxr3.c
@@ -298,9 +298,11 @@ cString cPluginDxr3::SVDRPCommand(const char *Command, const char *Option,
}
if (!strcasecmp(Command, "DON")) {
device->turnPlugin(true);
+ return "vdr-plugin-dxr3 turned on";
}
if (!strcasecmp(Command, "DOF")) {
device->turnPlugin(false);
+ return "vdr-plugin-dxr3 turned off";
}
return NULL;