summaryrefslogtreecommitdiff
path: root/svdrp.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2007-10-13 10:23:19 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2007-10-13 10:23:19 +0200
commit20fd2553ff4db95369b1566d42200b6532727ca7 (patch)
treebf2c5d95126f13f704794a636065e6f5d34ddcb8 /svdrp.c
parent8945e9e296a915a2e17e692a8e6d3737e1a8d326 (diff)
downloadvdr-20fd2553ff4db95369b1566d42200b6532727ca7.tar.gz
vdr-20fd2553ff4db95369b1566d42200b6532727ca7.tar.bz2
Fixed a missing '-' at the next to last line of SVDRP help texts
Diffstat (limited to 'svdrp.c')
-rw-r--r--svdrp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/svdrp.c b/svdrp.c
index 933375f4..c8cd5be8 100644
--- a/svdrp.c
+++ b/svdrp.c
@@ -10,7 +10,7 @@
* and interact with the Video Disk Recorder - or write a full featured
* graphical interface that sits on top of an SVDRP connection.
*
- * $Id: svdrp.c 1.103 2007/08/25 09:28:26 kls Exp $
+ * $Id: svdrp.c 1.104 2007/10/13 10:17:48 kls Exp $
*/
#include "svdrp.h"
@@ -819,7 +819,7 @@ void cSVDRP::CmdHELP(const char *Option)
if (*Option) {
const char *hp = GetHelpPage(Option, HelpPages);
if (hp)
- Reply(214, "%s", hp);
+ Reply(-214, "%s", hp);
else {
Reply(504, "HELP topic \"%s\" unknown", Option);
return;