Fixed a typo in svdrp.c

This commit is contained in:
Klaus Schmidinger 2020-06-22 20:59:49 +02:00
parent f5dba03447
commit 8bd2ed1494
3 changed files with 4 additions and 2 deletions

View File

@ -2494,6 +2494,7 @@ Tobias Grimm <tobias.grimm@e-tobi.net>
clean-plugins target
for adding optional verbose output to the libsi Makefile
for making the call to pkg_config configurable via the PKG_CONFIG macro
for fixing a typo in svdrp.c
Helge Lenz <h.lenz@gmx.de>
for reporting a bug in setting the 'Delta' parameter when calling the shutdown

View File

@ -9483,3 +9483,4 @@ Video Disk Recorder Revision History
their Makefiles accordingly by adding the line 'PKG_CONFIG ?= pkg-config' and
replacing every occurrence of 'pkg-config' with '$(PKG_CONFIG)', as can be seen in
the Makefiles of the plugins that come with the VDR source.
- Fixed a typo in svdrp.c (thanks to Tobias Grimm).

View File

@ -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 4.42 2020/05/06 11:51:33 kls Exp $
* $Id: svdrp.c 4.43 2020/06/22 20:59:49 kls Exp $
*/
#include "svdrp.h"
@ -2009,7 +2009,7 @@ void cSVDRPServer::CmdMODC(const char *Option)
Channels->ReNumber();
Channels->SetModifiedByUser();
Channels->SetModified();
isyslog("SVDRP %s < %s modifed channel %d %s", Setup.SVDRPHostName, *clientName, Channel->Number(), *Channel->ToText());
isyslog("SVDRP %s < %s modified channel %d %s", Setup.SVDRPHostName, *clientName, Channel->Number(), *Channel->ToText());
Reply(250, "%d %s", Channel->Number(), *Channel->ToText());
}
else