diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-01-13 12:17:30 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-01-13 12:17:30 +0100 |
commit | 35343eaf47f46950012b5c4d9b3c2de1fe1d164e (patch) | |
tree | dfae7215d76b3804b367823b3f486b1c41bd2495 /recording.c | |
parent | a7404879aaf06c74f1ea6cc94710b2cc187a8002 (diff) | |
download | vdr-35343eaf47f46950012b5c4d9b3c2de1fe1d164e.tar.gz vdr-35343eaf47f46950012b5c4d9b3c2de1fe1d164e.tar.bz2 |
Fixed a problem with recordings that have a single quote character in their name (this is now mapped to 0x01)
Diffstat (limited to 'recording.c')
-rw-r--r-- | recording.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/recording.c b/recording.c index e649be42..064731df 100644 --- a/recording.c +++ b/recording.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recording.c 1.23 2001/01/01 14:48:03 kls Exp $ + * $Id: recording.c 1.24 2001/01/13 12:17:15 kls Exp $ */ #define _GNU_SOURCE @@ -126,6 +126,7 @@ cRecording::cRecording(const char *FileName) strncpy(name, FileName, p - FileName); name[p - FileName] = 0; strreplace(name, '_', ' '); + strreplace(name, '\x01', '\''); } // read an optional summary file: char *SummaryFileName = NULL; @@ -176,8 +177,10 @@ const char *cRecording::FileName(void) if (!fileName) { struct tm *t = localtime(&start); asprintf(&fileName, NAMEFORMAT, VideoDirectory, name, t->tm_year + 1900, t->tm_mon + 1, t->tm_mday, t->tm_hour, t->tm_min, priority, lifetime); - if (fileName) + if (fileName) { strreplace(fileName, ' ', '_'); + strreplace(fileName, '\'', '\x01'); + } } return fileName; } |