diff options
Diffstat (limited to '')
-rw-r--r-- | g10/encrypt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/encrypt.c b/g10/encrypt.c index b193d4b4e..881fecfc1 100644 --- a/g10/encrypt.c +++ b/g10/encrypt.c @@ -190,7 +190,7 @@ encrypt_simple (const char *filename, int mode, int use_seskey) { iobuf_close (inp); inp = NULL; - errno = EPERM; + gpg_err_set_errno (EPERM); } if (!inp) { @@ -531,7 +531,7 @@ encrypt_crypt (int filefd, const char *filename, { iobuf_close (inp); inp = NULL; - errno = EPERM; + gpg_err_set_errno (EPERM); } if (!inp) { |