mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed a missing '-' at the next to last line of SVDRP help texts
This commit is contained in:
parent
8945e9e296
commit
20fd2553ff
@ -2179,3 +2179,6 @@ Matthias Becker <becker.matthias@gmail.com>
|
|||||||
Halim Sahin <halim.sahin@t-online.de>
|
Halim Sahin <halim.sahin@t-online.de>
|
||||||
for reporting that the channels.conf file was not written when stopping VDR after
|
for reporting that the channels.conf file was not written when stopping VDR after
|
||||||
deleting or moving a channel in the Channels menu
|
deleting or moving a channel in the Channels menu
|
||||||
|
|
||||||
|
Denis Knauf <denis.knauf@gmail.com>
|
||||||
|
for reporting a missing '-' at the next to last line of SVDRP help texts
|
||||||
|
2
HISTORY
2
HISTORY
@ -5451,3 +5451,5 @@ Video Disk Recorder Revision History
|
|||||||
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
|
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
|
||||||
- Added a missing Channels.SetModified(true) call when deleting or moving a
|
- Added a missing Channels.SetModified(true) call when deleting or moving a
|
||||||
channel in the Channels menu (reported by Halim Sahin).
|
channel in the Channels menu (reported by Halim Sahin).
|
||||||
|
- Fixed a missing '-' at the next to last line of SVDRP help texts (reported by
|
||||||
|
Denis Knauf).
|
||||||
|
4
svdrp.c
4
svdrp.c
@ -10,7 +10,7 @@
|
|||||||
* and interact with the Video Disk Recorder - or write a full featured
|
* and interact with the Video Disk Recorder - or write a full featured
|
||||||
* graphical interface that sits on top of an SVDRP connection.
|
* 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"
|
#include "svdrp.h"
|
||||||
@ -819,7 +819,7 @@ void cSVDRP::CmdHELP(const char *Option)
|
|||||||
if (*Option) {
|
if (*Option) {
|
||||||
const char *hp = GetHelpPage(Option, HelpPages);
|
const char *hp = GetHelpPage(Option, HelpPages);
|
||||||
if (hp)
|
if (hp)
|
||||||
Reply(214, "%s", hp);
|
Reply(-214, "%s", hp);
|
||||||
else {
|
else {
|
||||||
Reply(504, "HELP topic \"%s\" unknown", Option);
|
Reply(504, "HELP topic \"%s\" unknown", Option);
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user