summaryrefslogtreecommitdiff
path: root/svdrp.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-06-11 09:14:22 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-06-11 09:14:22 +0200
commitd324b2de882be794d2107c1ab945e79f71018fec (patch)
treeed8e1a507c17c96cc8ff8666f26997e0f1c2fb64 /svdrp.c
parent99876fdab3362a4e09935b1a4c1ffe0a48366664 (diff)
downloadvdr-d324b2de882be794d2107c1ab945e79f71018fec.tar.gz
vdr-d324b2de882be794d2107c1ab945e79f71018fec.tar.bz2
Reduced logging for the SVDRP GRAB command1.4.1
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 0f6060c1..34f283f6 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.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 {