diff options
author | Bernhard M. Wiedemann <[email protected]> | 2021-10-23 13:23:26 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2021-11-09 07:47:40 +0000 |
commit | 46ada6a9bd83daa9e5f064adfea1bb6ccdba5dcb (patch) | |
tree | d6e1113407e6aa3d4c9ab08d2af57c95903be8d6 | |
parent | wks: Allow access to newly created dirs (diff) | |
download | gnupg-46ada6a9bd83daa9e5f064adfea1bb6ccdba5dcb.tar.gz gnupg-46ada6a9bd83daa9e5f064adfea1bb6ccdba5dcb.zip |
wks: Do not mark key files as executable
-rw-r--r-- | tools/gpg-wks-server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gpg-wks-server.c b/tools/gpg-wks-server.c index 2ff53a27f..96f0a03a0 100644 --- a/tools/gpg-wks-server.c +++ b/tools/gpg-wks-server.c @@ -1442,7 +1442,7 @@ check_and_publish (server_ctx_t ctx, const char *address, const char *nonce) } /* Make sure it is world readable. */ - if (gnupg_chmod (fnewname, "-rwxr--r--")) + if (gnupg_chmod (fnewname, "-rw-r--r--")) log_error ("can't set permissions of '%s': %s\n", fnewname, gpg_strerror (gpg_err_code_from_syserror())); |