diff options
| author | Keine_Ahnung <no@mail.com> | 2012-12-26 19:56:01 +0100 |
|---|---|---|
| committer | Keine_Ahnung <no@mail.com> | 2012-12-26 19:56:01 +0100 |
| commit | 5273ed5096773c7bc348cb633ef2db1a3270699b (patch) | |
| tree | b621f621356fd86bc815e2a74febeba89de6fa61 | |
| parent | 38a6c891d3cdc9e4a990ecbde66aceb7bc2bb065 (diff) | |
| download | vdr-plugin-ripit-5273ed5096773c7bc348cb633ef2db1a3270699b.tar.gz vdr-plugin-ripit-5273ed5096773c7bc348cb633ef2db1a3270699b.tar.bz2 | |
missed {}
| -rw-r--r-- | ripit.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -123,12 +123,14 @@ cString cPluginRipit::SVDRPCommand(const char *Command, const char *Option, } } else if(!strcasecmp(Command, "STATUS")) { - if(ripitosd->Rip_On()) + if(ripitosd->Rip_On()) { ReplyCode = 920; return "A rip process is running"; - else + } + else { ReplyCode = 910; return "No rip process is running"; + } } else { ReplyCode = 502; return "Command not implemented"; |
