diff options
-rw-r--r-- | NEWS | 10 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/sysutils.c | 2 |
3 files changed, 11 insertions, 3 deletions
@@ -1,6 +1,14 @@ -Noteworthy changes in version 1.54 (unreleased) [C39/A39/R_] +Noteworthy changes in version 1.54 (2025-04-17) [C39/A39/R2] ----------------------------------------------- + * Fix a regression in 1.52 which did not allow to open UNC + specified files on Windows. [rE28ae4ee194] + + * Ignore log file specification from the Registry in the gpg-error + tool. + + Release-info: https://dev.gnupg.org/T7597 + Noteworthy changes in version 1.53 (2025-04-09) [C39/A39/R1] ----------------------------------------------- diff --git a/configure.ac b/configure.ac index 54b4397..16c2508 100644 --- a/configure.ac +++ b/configure.ac @@ -53,7 +53,7 @@ AC_INIT([mym4_package],[mym4_version],[https://bugs.gnupg.org]) # Note that added error codes don't constitute an interface change. LIBGPG_ERROR_LT_CURRENT=39 LIBGPG_ERROR_LT_AGE=39 -LIBGPG_ERROR_LT_REVISION=1 +LIBGPG_ERROR_LT_REVISION=2 ################################################ AC_SUBST(LIBGPG_ERROR_LT_CURRENT) diff --git a/src/sysutils.c b/src/sysutils.c index 7bebd4b..f016c10 100644 --- a/src/sysutils.c +++ b/src/sysutils.c @@ -339,7 +339,7 @@ _gpgrt_fname_to_wchar (const char *fname) wfullpath = NULL; if (extralen == 6) - wname[6] = 'C'; /* Replace first backslash - see above. */ + wname[6] = L'C'; /* Replace first backslash - see above. */ /* Need to make sure that all slashes are mapped. */ for (w = wname; *w; w++) |