mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Taking the German umlauts 'as is' when compiled with VFAT
This commit is contained in:
1
HISTORY
1
HISTORY
@@ -1025,3 +1025,4 @@ Video Disk Recorder Revision History
|
|||||||
(optionally) contain the 'table ID' (see FORMATS for details).
|
(optionally) contain the 'table ID' (see FORMATS for details).
|
||||||
- The new SVDRP command PUTE can be used to put EPG data into the EPG list.
|
- The new SVDRP command PUTE can be used to put EPG data into the EPG list.
|
||||||
See FORMATS for details about the required data format.
|
See FORMATS for details about the required data format.
|
||||||
|
- Taking the German umlauts 'as is' when compiled with VFAT.
|
||||||
|
@@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* 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"
|
#include "recording.h"
|
||||||
@@ -224,7 +224,12 @@ static char *ExchangeChars(char *s, bool ToFileSystem)
|
|||||||
case '=':
|
case '=':
|
||||||
case '0' ... '9':
|
case '0' ... '9':
|
||||||
case 'a' ... 'z':
|
case 'a' ... 'z':
|
||||||
case 'A' ... 'Z': break;
|
case 'A' ... 'Z':
|
||||||
|
case '<EFBFBD>': case '<EFBFBD>':
|
||||||
|
case '<EFBFBD>': case '<EFBFBD>':
|
||||||
|
case '<EFBFBD>': case '<EFBFBD>':
|
||||||
|
case '<EFBFBD>':
|
||||||
|
break;
|
||||||
// characters that can be mapped to other characters:
|
// characters that can be mapped to other characters:
|
||||||
case ' ': *p = '_'; break;
|
case ' ': *p = '_'; break;
|
||||||
case '~': *p = '/'; break;
|
case '~': *p = '/'; break;
|
||||||
|
Reference in New Issue
Block a user