mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
Replace most calls to open by a new wrapper.
* common/sysutils.c (any8bitchar) [W32]: New. (gnupg_open): New. Replace most calls to open by this. * common/iobuf.c (any8bitchar) [W32]: New. (direct_open) [W32]: Use CreateFileW if needed. -- This is yet another step for full Unicode support on Windows. GnuPG-bug-id: 5098
This commit is contained in:
parent
b47c355b18
commit
4dcef0e178
8 changed files with 79 additions and 26 deletions
|
@ -1407,10 +1407,10 @@ open_info_file (const char *fname, int for_write, int binary)
|
|||
do
|
||||
{
|
||||
if (for_write)
|
||||
fd = open (fname, O_CREAT | O_TRUNC | O_WRONLY | binary,
|
||||
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
|
||||
fd = gnupg_open (fname, O_CREAT | O_TRUNC | O_WRONLY | binary,
|
||||
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
|
||||
else
|
||||
fd = open (fname, O_RDONLY | binary);
|
||||
fd = gnupg_open (fname, O_RDONLY | binary, 0);
|
||||
}
|
||||
while (fd == -1 && errno == EINTR);
|
||||
/* } */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue