From eae942b7b4ed36f5f43edd20ae6abd9e923b96c0 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 22 Jan 2013 16:46:29 +0000 Subject: merge in Win32 UTF-8 file/path support svn path=/trunk/externals/miXed/; revision=16950 --- shared/common/os.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'shared/common/os.c') diff --git a/shared/common/os.c b/shared/common/os.c index 408fdfb..9737949 100644 --- a/shared/common/os.c +++ b/shared/common/os.c @@ -216,8 +216,7 @@ FILE *fileread_open(char *filename, t_canvas *cv, int textmode) if (nameptr != slashpos) strcpy(slashpos, nameptr); } - sys_bashfilename(path, path); - return (fopen(path, (textmode ? "r" : "rb"))); + return (sys_fopen(path, (textmode ? "r" : "rb"))); } FILE *filewrite_open(char *filename, t_canvas *cv, int textmode) @@ -231,8 +230,7 @@ FILE *filewrite_open(char *filename, t_canvas *cv, int textmode) strncpy(path, filename, MAXPDSTRING); path[MAXPDSTRING-1] = 0; } - sys_bashfilename(path, path); - return (fopen(path, (textmode ? "w" : "wb"))); + return (sys_fopen(path, (textmode ? "w" : "wb"))); } /* FIXME add MSW */ -- cgit v1.2.1