summaryrefslogtreecommitdiff
path: root/recording.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-02-24 11:22:30 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2002-02-24 11:22:30 +0100
commit67cbbd7ba383513f1c6e95b90b3495b4ea3b2733 (patch)
treeb95d34435b5b1982467f21ccba4a1840f828171d /recording.c
parent46095d615109265ff42761e6d6607a25d15e2124 (diff)
downloadvdr-67cbbd7ba383513f1c6e95b90b3495b4ea3b2733.tar.gz
vdr-67cbbd7ba383513f1c6e95b90b3495b4ea3b2733.tar.bz2
Taking the German umlauts 'as is' when compiled with VFAT
Diffstat (limited to 'recording.c')
-rw-r--r--recording.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/recording.c b/recording.c
index 1c8b311e..4d07434a 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.53 2002/02/15 22:22:58 kls Exp $
+ * $Id: recording.c 1.54 2002/02/24 11:21:42 kls Exp $
*/
#include "recording.h"
@@ -224,7 +224,12 @@ static char *ExchangeChars(char *s, bool ToFileSystem)
case '=':
case '0' ... '9':
case 'a' ... 'z':
- case 'A' ... 'Z': break;
+ case 'A' ... 'Z':
+ case 'ä': case 'Ä':
+ case 'ö': case 'Ö':
+ case 'ü': case 'Ü':
+ case 'ß':
+ break;
// characters that can be mapped to other characters:
case ' ': *p = '_'; break;
case '~': *p = '/'; break;