mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-02-03 11:00:14 -05:00
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:
parent
2de928dc64
commit
85c089b09b
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user