diff options
| author | Werner Koch <[email protected]> | 2020-10-20 09:52:16 +0000 |
|---|---|---|
| committer | Werner Koch <[email protected]> | 2020-10-20 10:15:56 +0000 |
| commit | 390497ea115e1aca93feec297a5bd6ae7b1ba6dd (patch) | |
| tree | 675448ff809e3f333bba4918e4787eacda7f8190 /kbx/backend-kbx.c | |
| parent | Replace all calls to access by gnupg_access (diff) | |
| download | gnupg-390497ea115e1aca93feec297a5bd6ae7b1ba6dd.tar.gz gnupg-390497ea115e1aca93feec297a5bd6ae7b1ba6dd.zip | |
Replace most of the remaining stdio calls by estream calls.
--
We need to use es_fopen on Windows to cope with non-ascii file names.
This is quite a large but fortunately straightforward change. At a
very few places we keep using stdio (for example due to the use of
popen).
GnuPG-bug-id: 5098
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'kbx/backend-kbx.c')
| -rw-r--r-- | kbx/backend-kbx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kbx/backend-kbx.c b/kbx/backend-kbx.c index ca72169a0..eff64cfa3 100644 --- a/kbx/backend-kbx.c +++ b/kbx/backend-kbx.c @@ -126,7 +126,7 @@ create_keybox (const char *filename) filename, gpg_strerror (err)); goto leave; } - err = _keybox_write_header_blob (NULL, fp, 1); + err = _keybox_write_header_blob (fp, 1); es_fclose (fp); if (err) { |
