aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2025-04-17 12:45:32 +0000
committerWerner Koch <[email protected]>2025-04-17 12:50:42 +0000
commit9d47a0f1f8ae0b9aa4c2d0c230c08c8fbe243f42 (patch)
treecb48812ebc89d0f7779a62567b1b616c14926843
parentw32: Fix extended length path handling for UNC specified files. (diff)
downloadlibgpg-error-9d47a0f1f8ae0b9aa4c2d0c230c08c8fbe243f42.tar.gz
libgpg-error-9d47a0f1f8ae0b9aa4c2d0c230c08c8fbe243f42.zip
-rw-r--r--NEWS10
-rw-r--r--configure.ac2
-rw-r--r--src/sysutils.c2
3 files changed, 11 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 54c0afb..cad0aee 100644
--- a/NEWS
+++ b/NEWS
@@ -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++)