diff options
| -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"; |
