summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2016-02-21 23:31:36 +0100
committerlouis <louis.braun@gmx.de>2016-02-21 23:31:36 +0100
commitc47cbcca8bdd5918dacb171c25f99a9c0af376ca (patch)
treec363e2dd909b077cfd421adf18234039aea117ed
parent328af5373fe9f8ec4f3b55281bab3a0ddf18dbc5 (diff)
downloadvdr-plugin-skindesigner-c47cbcca8bdd5918dacb171c25f99a9c0af376ca.tar.gz
vdr-plugin-skindesigner-c47cbcca8bdd5918dacb171c25f99a9c0af376ca.tar.bz2
fixed svdrp error codes
-rw-r--r--skindesigner.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/skindesigner.c b/skindesigner.c
index 02e56d5..fb2ffcc 100644
--- a/skindesigner.c
+++ b/skindesigner.c
@@ -231,7 +231,7 @@ cString cPluginSkinDesigner::SVDRPCommand(const char *Command, const char *Optio
if (!activeSkin) {
ReplyCode = 550;
- return "";
+ return "SKINDESIGNER not active.";
}
if (strcasecmp(Command, "RELD") == 0) {
@@ -289,7 +289,7 @@ cString cPluginSkinDesigner::SVDRPCommand(const char *Command, const char *Optio
return "SKINDESIGNER Custom Tokens listed in Log";
}
ReplyCode = 502;
- return "SKINDESIGNER not active.";
+ return "SKINDESIGNER invalid SVDRP command.";
}