diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-01-14 16:12:13 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-01-14 16:12:13 +0100 |
commit | 1de53359223140ccadd8a1a9a134f57e2f3c0468 (patch) | |
tree | c461898068eec8f0ba826345e392e29ac1cf1937 /svdrp.c | |
parent | dea4bf298a65100d31ce8a4ec52ed9febbd00035 (diff) | |
download | vdr-1de53359223140ccadd8a1a9a134f57e2f3c0468.tar.gz vdr-1de53359223140ccadd8a1a9a134f57e2f3c0468.tar.bz2 |
The SVDRP command GRAB allows file names without extension again
Diffstat (limited to 'svdrp.c')
-rw-r--r-- | svdrp.c | 6 |
1 files changed, 1 insertions, 5 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.92 2006/01/14 14:55:52 kls Exp $ + * $Id: svdrp.c 1.93 2006/01/14 16:08:20 kls Exp $ */ #include "svdrp.h" @@ -683,10 +683,6 @@ void cSVDRP::CmdGRAB(const char *Option) } else if (strcmp(FileName, "-") == 0) FileName = NULL; - else { - Reply(501, "Missing filename extension in \"%s\"", FileName); - return; - } // image quality (and obsolete type): if ((p = strtok_r(NULL, delim, &strtok_next)) != NULL) { if (strcasecmp(p, "JPEG") == 0 || strcasecmp(p, "PNM") == 0) { |