diff options
author | Werner Koch <wk@gnupg.org> | 2020-10-20 14:08:35 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2020-10-20 14:08:35 +0200 |
commit | 4dcef0e17836e8725c31a3b76f2bf7144345c808 (patch) | |
tree | e75dc82afa98ea964ee65fde05608a6148214ffe /dirmngr | |
parent | w32: Allow Unicode filenames for dotlock (diff) | |
download | gnupg2-4dcef0e17836e8725c31a3b76f2bf7144345c808.tar.xz gnupg2-4dcef0e17836e8725c31a3b76f2bf7144345c808.zip |
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
Diffstat (limited to 'dirmngr')
-rw-r--r-- | dirmngr/crlcache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dirmngr/crlcache.c b/dirmngr/crlcache.c index 131a0bd8d..54caf4136 100644 --- a/dirmngr/crlcache.c +++ b/dirmngr/crlcache.c @@ -1142,7 +1142,7 @@ lock_db_file (crl_cache_t cache, crl_cache_entry_t entry) xfree (fname); return NULL; } - fd = open (fname, O_RDONLY | O_BINARY); + fd = gnupg_open (fname, O_RDONLY | O_BINARY, 0); if (fd == -1) { log_error (_("error opening cache file '%s': %s\n"), @@ -2226,7 +2226,7 @@ crl_cache_insert (ctrl_t ctrl, const char *url, ksba_reader_t reader) } } - fd_cdb = open (fname, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644); + fd_cdb = gnupg_open (fname, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644); if (fd_cdb == -1) { err = gpg_error_from_errno (errno); |