diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2010-01-17 12:08:03 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2010-01-17 12:08:03 +0100 |
commit | a503c6ab3f1763c98db5677a59d4d07bf8299025 (patch) | |
tree | 8c041b2e26b1453151f73927cdb3dacbe10b2f50 /timers.c | |
parent | 61c1df70040cbb9215f9735be36cf414b039a2e6 (diff) | |
download | vdr-a503c6ab3f1763c98db5677a59d4d07bf8299025.tar.gz vdr-a503c6ab3f1763c98db5677a59d4d07bf8299025.tar.bz2 |
The "Edit timer" menu can now set the folder for the recording from a list of folders stored in "folders.conf"
Diffstat (limited to 'timers.c')
-rw-r--r-- | timers.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: timers.c 2.3 2009/08/09 12:43:20 kls Exp $ + * $Id: timers.c 2.4 2010/01/16 11:18:53 kls Exp $ */ #include "timers.h" @@ -301,7 +301,7 @@ bool cTimer::Parse(const char *s) //TODO add more plausibility checks result = ParseDay(daybuffer, day, weekdays); if (VfatFileSystem) { - char *p = strrchr(filebuffer, '~'); + char *p = strrchr(filebuffer, FOLDERDELIMCHAR); if (p) p++; else |