diff options
author | Werner Koch <wk@gnupg.org> | 2020-08-24 11:44:57 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2020-08-24 12:56:13 +0200 |
commit | 59d9f8106db3a23cb5d51d01dc6b719413d3f760 (patch) | |
tree | bdabdd2cc11fc58c61747ffeee1e1ce31905647b | |
parent | a68c1975bda47b0698b48761a62e95b371095e9a (diff) | |
download | libgpg-error-59d9f8106db3a23cb5d51d01dc6b719413d3f760.tar.gz |
Release 1.39libgpg-error-1.39gpgrt-1.39
-rw-r--r-- | NEWS | 18 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | src/estream.c | 2 |
3 files changed, 18 insertions, 6 deletions
@@ -1,14 +1,26 @@ -Noteworthy changes in version 1.39 (unreleased) [C29/A29/R1] +Noteworthy changes in version 1.39 (2020-08-24) [C30/A30/R0] ----------------------------------------------- - * On Windows gpgrt_fopen can now handle UTF-8 names. + * On Windows gpgrt_fopen, gpgrt_chdir, and gpgrt_mkdir now handle + UTF-8 names. [#4083] - * On Windows gpgrt_chdir and gpgrt_mkdir can now handle UTF-8 names. + * Make timeout of gpgrt_poll work correctly on Windows if no file + descriptors are active. + + * New function gpgrt_fcancel as alternative to gpgrt_close. This + function avoid flushing out buffered data and also tries to delete + a newly created file. + + * Changes to ease cross-building. [#4973] + + * "gpg-error --lib-version" works again. * Interface changes relative to the 1.38 release: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ gpgrt_fcancel NEW. + Release-info: https://dev.gnupg.org/T5031 + Noteworthy changes in version 1.38 (2020-05-29) [C29/A29/R0] ----------------------------------------------- diff --git a/configure.ac b/configure.ac index 80d24db..d9e5bf1 100644 --- a/configure.ac +++ b/configure.ac @@ -49,8 +49,8 @@ AC_INIT([mym4_package],[mym4_version], [https://bugs.gnupg.org]) # (Interfaces added: AGE++) # (Interfaces removed: AGE=0) # Note that added error codes don't constitute an interface change. -LIBGPG_ERROR_LT_CURRENT=29 -LIBGPG_ERROR_LT_AGE=29 +LIBGPG_ERROR_LT_CURRENT=30 +LIBGPG_ERROR_LT_AGE=30 LIBGPG_ERROR_LT_REVISION=0 ################################################ diff --git a/src/estream.c b/src/estream.c index 0d37c1a..f75e052 100644 --- a/src/estream.c +++ b/src/estream.c @@ -3374,7 +3374,7 @@ _gpgrt_fopencookie (void *_GPGRT__RESTRICT cookie, estream_t stream; int err; es_syshd_t syshd; - struct cookie_io_functions_s io_functions = { functions, NULL, }; + struct cookie_io_functions_s io_functions = { functions, NULL }; stream = NULL; modeflags = 0; |