diff options
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | svdrp.c | 4 |
3 files changed, 4 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 4b2ebf2a..563650c1 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -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 @@ -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). @@ -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 |