aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2020-10-26 12:39:26 +0100
committerWerner Koch <wk@gnupg.org>2020-10-26 12:50:13 +0100
commitcf4b8a27c37db1ac50bd8d1aa6ad2b7ad3aeaa81 (patch)
treeabe723bb7a96d501c268dc203e1effcd5854f38b
parent8264b10d33e46d2caac2f2c38ccb5f764c31ad77 (diff)
downloadgnupg-cf4b8a27c37db1ac50bd8d1aa6ad2b7ad3aeaa81.tar.gz
g10,sm: Use gnupg_access at two more places
--
-rw-r--r--g10/keydb.c2
-rw-r--r--sm/keydb.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/g10/keydb.c b/g10/keydb.c
index f32eab055..2db231136 100644
--- a/g10/keydb.c
+++ b/g10/keydb.c
@@ -250,7 +250,7 @@ maybe_create_keyring_or_box (char *filename, int is_box, int force_create)
not happen though. */
save_slash = *last_slash_in_filename;
*last_slash_in_filename = 0;
- if (access(filename, F_OK))
+ if (gnupg_access(filename, F_OK))
{
static int tried;
diff --git a/sm/keydb.c b/sm/keydb.c
index 875189ea6..71b98d764 100644
--- a/sm/keydb.c
+++ b/sm/keydb.c
@@ -245,7 +245,7 @@ maybe_create_keybox (char *filename, int force, int *r_created)
not happen though. */
save_slash = *last_slash_in_filename;
*last_slash_in_filename = 0;
- if (access(filename, F_OK))
+ if (gnupg_access(filename, F_OK))
{
static int tried;