Fixed #ifdef for Windows compile in openpgpsdk.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5936 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2012-12-03 18:08:16 +00:00
parent 2de928dc64
commit 85c089b09b

View File

@ -180,8 +180,8 @@ ops_boolean_t ops_encrypt_file(const char* input_filename,
int fd_out=0;
ops_create_info_t *cinfo;
#ifdef WINDOWS_SYS
fd_in=ops_open(input_filename, O_RDONLY | O_BINARY);
#ifdef WIN32
fd_in=ops_open(input_filename, O_RDONLY | O_BINARY, 0);
#else
fd_in=ops_open(input_filename, O_RDONLY, 0);
#endif