Fixed problem with utf characters in the %APPDATA% path on Windows.

Added function for opening files on Windows and Linux - RsDirUtil::rs_fopen.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4124 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2011-04-03 23:11:38 +00:00
parent bc78397a64
commit bc113326e4
17 changed files with 109 additions and 119 deletions

View file

@ -2506,7 +2506,7 @@ uint32 TcpStream::int_rbytes()
static FILE *bc_fd = 0;
int setupBinaryCheck(std::string fname)
{
bc_fd = fopen(fname.c_str(), "r");
bc_fd = RsDirUtil::rs_fopen(fname.c_str(), "r");
return 1;
}