diff options
author | Werner Koch <[email protected]> | 2021-05-25 11:39:59 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2021-05-25 11:39:59 +0000 |
commit | 30563ea29705016b08ff04fd8a833940ea94e4e8 (patch) | |
tree | 50814b57641f0770789ca0d7430ccf08afaf4241 /common/openpgp-fpr.c | |
parent | common: Annotate leaked memory in homedir.c (diff) | |
download | gnupg-30563ea29705016b08ff04fd8a833940ea94e4e8.tar.gz gnupg-30563ea29705016b08ff04fd8a833940ea94e4e8.zip |
gpg: Partial fix for Unicode problem in output files.
* g10/openfile.c (overwrite_filep): Use gnupg_access.
--
As said, this is just an obvious but partial fix. We need to review
things for the output module.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'common/openpgp-fpr.c')
-rw-r--r-- | common/openpgp-fpr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/openpgp-fpr.c b/common/openpgp-fpr.c index de28c253b..7b110085f 100644 --- a/common/openpgp-fpr.c +++ b/common/openpgp-fpr.c @@ -265,7 +265,7 @@ compute_openpgp_fpr_ecc (int keyversion, unsigned long timestamp, { if (!kdf || !kdflen || !kdf[0]) { - /* No KDF givem - use the default. */ + /* No KDF given - use the default. */ kdflen = 4; kdf = default_ecdh_params (curvebits); } |