diff options
author | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2006-06-11 18:00:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2006-06-11 18:00:00 +0200 |
commit | 2bb325135433521694b0a387a60225d7727a980e (patch) | |
tree | 0fbcb7c4d345e441597bf53ef26a790003fa30ab /svdrp.c | |
parent | 21f3eaf6c98751cc5931ccfd7bc123f7b7ac38f8 (diff) | |
download | vdr-patch-lnbsharing-2bb325135433521694b0a387a60225d7727a980e.tar.gz vdr-patch-lnbsharing-2bb325135433521694b0a387a60225d7727a980e.tar.bz2 |
Version 1.4.1vdr-1.4.1
- Changed the log messages when grabbing an image from 'isyslog()' to 'dsyslog()'
so that they can be suppressed in normal operation mode to avoid clogging the
log file in case this function is used frequently (suggested by Helmut Auer).
Diffstat (limited to 'svdrp.c')
-rw-r--r-- | svdrp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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.96 2006/06/03 09:17:17 kls Exp $ + * $Id: svdrp.c 1.97 2006/06/11 09:04:36 kls Exp $ */ #include "svdrp.h" @@ -779,7 +779,7 @@ void cSVDRP::CmdGRAB(const char *Option) int fd = open(FileName, O_WRONLY | O_CREAT | O_NOFOLLOW | O_TRUNC, DEFFILEMODE); if (fd >= 0) { if (safe_write(fd, Image, ImageSize) == ImageSize) { - isyslog("grabbed image to %s", FileName); + dsyslog("grabbed image to %s", FileName); Reply(250, "Grabbed image %s", Option); } else { |