Page MenuHome GnuPG
Feed Advanced Search

Jun 25 2024

werner added projects to T7177: libassuan-3.0.1: Errant declaration of putc_unlocked in src/assuan-defs.h causes a Darwin build to fail: gpgrt, MacOS.

The use of putc_unlocked has long been removed. So we should also remove the declaration. Normally this does not harm but in your case you may want to pass CFLAGS="-DHAVE_PUTC_UNLOCKED" to make or remove the above declaration.

Jun 25 2024, 9:02 AM · MacOS, gpgrt, Bug Report
debohman added a comment to T7177: libassuan-3.0.1: Errant declaration of putc_unlocked in src/assuan-defs.h causes a Darwin build to fail.
diff --git a/src/assuan-defs.h b/src/assuan-defs.h
index faf9aae..cbc594c 100644
--- a/src/assuan-defs.h
+++ b/src/assuan-defs.h
@@ -431,10 +431,6 @@ char *stpcpy (char *dest, const char *src);
 #define clearenv _assuan_clearenv
 int setenv (const char *name, const char *value, int replace);
 #endif
-#ifndef HAVE_PUTC_UNLOCKED
-int putc_unlocked (int c, FILE *stream);
-#endif
-
Jun 25 2024, 3:06 AM · MacOS, gpgrt, Bug Report
debohman created T7177: libassuan-3.0.1: Errant declaration of putc_unlocked in src/assuan-defs.h causes a Darwin build to fail.
Jun 25 2024, 3:03 AM · MacOS, gpgrt, Bug Report

Jun 24 2024

werner added a comment to T7176: write_status_text_and_buffer fails to escape some non-printable characters.

The point here is to escape control characters so that we do not run into problems when reading the stuff. Escaping non-ascii (c >127) is not required and would put a lower limit on the number of (utf-8) characters we can print via the status lines.
Note also that we use almost everywhere ascii versions of the character checks. Thus I would not consider this a bug.

Jun 24 2024, 6:49 PM · Support, gnupg, Not A Bug
ametzler1 created T7176: write_status_text_and_buffer fails to escape some non-printable characters.
Jun 24 2024, 6:42 PM · Support, gnupg, Not A Bug
debohman added a comment to T7170: Building libgcrypt-1.11.0 produces a dylib with unresolved symbols at runtime.

Verified the fix.

Jun 24 2024, 6:21 PM · MacOS, libgcrypt, Bug Report
werner added a comment to T7151: graceful shutdown: DEVINFO should be a gpg-agent command: also watching input close.

Maybe we can support this directly in gpgme's assuan API.

Jun 24 2024, 9:05 AM · gpgagent, scd, gnupg24, Bug Report
jukivili closed T7175: libgcrypt 1.11.0 fails to build on 32bit Windows with Clang as Resolved.
Jun 24 2024, 6:40 AM · clang, Windows, libgcrypt, Bug Report
gniibe added a comment to T7151: graceful shutdown: DEVINFO should be a gpg-agent command: also watching input close.

Did some experiment and I concluded (for now) that new command for gpg-agent would not be needed.
Instead, it might be better doing following in GPGME.

Jun 24 2024, 4:24 AM · gpgagent, scd, gnupg24, Bug Report
gniibe changed the status of T7170: Building libgcrypt-1.11.0 produces a dylib with unresolved symbols at runtime from Open to Testing.

Pushed the change to master. Please test.
rCbb0895bbb7c6: m4: Fix acinclude.m4 for underscore detection in the symbol.

Jun 24 2024, 3:21 AM · MacOS, libgcrypt, Bug Report
gniibe claimed T7170: Building libgcrypt-1.11.0 produces a dylib with unresolved symbols at runtime.

Thank you for the report.

Jun 24 2024, 3:06 AM · MacOS, libgcrypt, Bug Report

Jun 23 2024

jukivili closed T7167: The libgcrypt 1.11.0 tests fail on s390x as Resolved.
Jun 23 2024, 4:39 PM · libgcrypt, s390, Bug Report
werner updated subscribers of T7170: Building libgcrypt-1.11.0 produces a dylib with unresolved symbols at runtime.

Thanks for the detailed analysis; we will check to tomorrow why this was changed.

Jun 23 2024, 10:54 AM · MacOS, libgcrypt, Bug Report
lazka added a comment to T7175: libgcrypt 1.11.0 fails to build on 32bit Windows with Clang.

Hm, CFI directives should not be used on WIN32 target. This patch should solve the issue for now:

Jun 23 2024, 9:20 AM · clang, Windows, libgcrypt, Bug Report

Jun 22 2024

debohman added a comment to T7170: Building libgcrypt-1.11.0 produces a dylib with unresolved symbols at runtime.

Here is a fix for the issue which preserves the removal of cut:

Jun 22 2024, 9:30 PM · MacOS, libgcrypt, Bug Report
werner triaged T7175: libgcrypt 1.11.0 fails to build on 32bit Windows with Clang as Low priority.

Using clang for Windows is not tested or suggested. Thus low priority.

Jun 22 2024, 5:01 PM · clang, Windows, libgcrypt, Bug Report
jukivili added a comment to T7175: libgcrypt 1.11.0 fails to build on 32bit Windows with Clang.

I tried to reproduce issue with clang/w32 toolchain from https://github.com/mstorsjo/llvm-mingw but there build worked even with CFI directives.

Jun 22 2024, 3:00 PM · clang, Windows, libgcrypt, Bug Report
jukivili added a comment to T7175: libgcrypt 1.11.0 fails to build on 32bit Windows with Clang.

Hm, CFI directives should not be used on WIN32 target. This patch should solve the issue for now:

Jun 22 2024, 2:57 PM · clang, Windows, libgcrypt, Bug Report
jukivili added a comment to T7167: The libgcrypt 1.11.0 tests fail on s390x.

Thanks for testing. I pushed this fix to libgcrypt master.

Jun 22 2024, 2:35 PM · libgcrypt, s390, Bug Report

Jun 21 2024

lazka updated subscribers of T7175: libgcrypt 1.11.0 fails to build on 32bit Windows with Clang.

seems to be related to https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgcrypt.git;a=commit;h=a5f88f30ce612b0239b946c4424d81cf0d552e96

Jun 21 2024, 7:11 PM · clang, Windows, libgcrypt, Bug Report
lazka created T7175: libgcrypt 1.11.0 fails to build on 32bit Windows with Clang.
Jun 21 2024, 4:19 PM · clang, Windows, libgcrypt, Bug Report
werner added a project to T7167: The libgcrypt 1.11.0 tests fail on s390x: libgcrypt.
Jun 21 2024, 1:24 PM · libgcrypt, s390, Bug Report
werner raised the priority of T7121: gnupg 2.2.43: scdaemon fails with KDF from Normal to High.
Jun 21 2024, 1:21 PM · gnupg22 (gnupg-2.2.44), yubikey, scd, Bug Report
Marius_Schamschula added a comment to T7169: libgpg-error 1.50 build issue (spawn-posix.c:345:5: error: use of undeclared identifier 'environ').

See: MacPorts Ticket 70267 and MacPorts PR #24601

Jun 21 2024, 12:45 PM · gpgrt, MacOS, Bug Report
Jakuje added a comment to T7167: The libgcrypt 1.11.0 tests fail on s390x.

Oh, I did not notice the change as I clicked to the patch from mail notification. Trying now with the updated one:

Jun 21 2024, 11:34 AM · libgcrypt, s390, Bug Report
jukivili added a comment to T7167: The libgcrypt 1.11.0 tests fail on s390x.

Just to make sure, did you use the updated version of the patch? I edited the message with fix candidate and changed the attachment.

Jun 21 2024, 10:46 AM · libgcrypt, s390, Bug Report
Jakuje added a comment to T7167: The libgcrypt 1.11.0 tests fail on s390x.

Running scratch build on s390x: https://koji.fedoraproject.org/koji/taskinfo?taskID=119376728 with the proposed change. The failure is now:

Jun 21 2024, 9:57 AM · libgcrypt, s390, Bug Report
werner reopened T7169: libgpg-error 1.50 build issue (spawn-posix.c:345:5: error: use of undeclared identifier 'environ') as "Open".
Jun 21 2024, 9:52 AM · gpgrt, MacOS, Bug Report
gniibe closed T7022: libgcrypt-1.10.3 regression on hppa as Resolved.
Jun 21 2024, 8:48 AM · libgcrypt, Gentoo, hppa, Bug Report
gniibe closed T6863: [patch] libgcrypt copyright header cleanup as Resolved.
Jun 21 2024, 8:48 AM · patch, libgcrypt, Bug Report
gniibe closed T6018: libassuan: Coverity reports as Resolved.
Jun 21 2024, 8:47 AM · patch, libassuan, Bug Report
gniibe closed T6271: The old FSF address in libgcrypt source code as Resolved.

Done in 1.11.0.

Jun 21 2024, 8:42 AM · Documentation, libgcrypt, Bug Report

Jun 20 2024

Marius_Schamschula added a comment to T7169: libgpg-error 1.50 build issue (spawn-posix.c:345:5: error: use of undeclared identifier 'environ').

While the above patch worked for MacOS 10.8 and above, MacPorts CI shows a second error for older MacOS versions:

Jun 20 2024, 10:07 PM · gpgrt, MacOS, Bug Report
jukivili added a comment to T7167: The libgcrypt 1.11.0 tests fail on s390x.

Here's fix candidate (edit, new try):

Jun 20 2024, 7:12 PM · libgcrypt, s390, Bug Report
Marius_Schamschula added a comment to T7169: libgpg-error 1.50 build issue (spawn-posix.c:345:5: error: use of undeclared identifier 'environ').

It looks like various flavors of BSD (including macOS just declare environ when needed): environ -- user environment Note: this is a very old MacOS X man page, however the current version is from 2003, and has the same Synopsis.

Jun 20 2024, 5:20 PM · gpgrt, MacOS, Bug Report
werner renamed T7171: Allow for empty Subject in X.509 from Allow for empty Subject in X.508 to Allow for empty Subject in X.509.
Jun 20 2024, 3:27 PM · libksba, Bug Report, gnupg, S/MIME
werner triaged T7171: Allow for empty Subject in X.509 as Normal priority.
Jun 20 2024, 3:12 PM · libksba, Bug Report, gnupg, S/MIME
debohman added a comment to T7170: Building libgcrypt-1.11.0 produces a dylib with unresolved symbols at runtime.

This diff for 1.11.0 fixes the problem for me:

Jun 20 2024, 2:45 PM · MacOS, libgcrypt, Bug Report
debohman added a comment to T7170: Building libgcrypt-1.11.0 produces a dylib with unresolved symbols at runtime.

The following logic from 1.11.0 acinclude.m4 cannot possibly work to detect _ at the beginning of symbol names:

Jun 20 2024, 2:34 PM · MacOS, libgcrypt, Bug Report
debohman added a comment to T7170: Building libgcrypt-1.11.0 produces a dylib with unresolved symbols at runtime.

The toolchain is clang / llvm and the apple ld, native build, not cross compiling.

Jun 20 2024, 1:00 PM · MacOS, libgcrypt, Bug Report
werner triaged T7162: handle python interact() check like c check as Normal priority.
Jun 20 2024, 12:22 PM · Python, gpgme, Bug Report
werner triaged T7170: Building libgcrypt-1.11.0 produces a dylib with unresolved symbols at runtime as Normal priority.
Jun 20 2024, 12:22 PM · MacOS, libgcrypt, Bug Report
werner added a project to T7170: Building libgcrypt-1.11.0 produces a dylib with unresolved symbols at runtime: MacOS.
Jun 20 2024, 12:21 PM · MacOS, libgcrypt, Bug Report
werner triaged T7167: The libgcrypt 1.11.0 tests fail on s390x as High priority.
Jun 20 2024, 12:21 PM · libgcrypt, s390, Bug Report
werner added a project to T7169: libgpg-error 1.50 build issue (spawn-posix.c:345:5: error: use of undeclared identifier 'environ'): gpgrt.
Jun 20 2024, 12:16 PM · gpgrt, MacOS, Bug Report
werner closed T7169: libgpg-error 1.50 build issue (spawn-posix.c:345:5: error: use of undeclared identifier 'environ') as Resolved.
Jun 20 2024, 12:16 PM · gpgrt, MacOS, Bug Report
werner edited projects for T7170: Building libgcrypt-1.11.0 produces a dylib with unresolved symbols at runtime, added: libgcrypt; removed gpgrt.
Jun 20 2024, 12:14 PM · MacOS, libgcrypt, Bug Report
werner added a project to T7170: Building libgcrypt-1.11.0 produces a dylib with unresolved symbols at runtime: gpgrt.

Didn't you had this problem with 1.10.x ? I can't remember that we changed anything at theat code for years. The only recent change was rC656ca459e which should not have changed anything. Maybe the problem is elsewhere.

Jun 20 2024, 12:14 PM · MacOS, libgcrypt, Bug Report
werner changed the status of T7169: libgpg-error 1.50 build issue (spawn-posix.c:345:5: error: use of undeclared identifier 'environ') from Open to Testing.

Frankly, having environ declared in unistd.h is a glibc convenience and other systems likey don't have it. easy to fix, though.

Jun 20 2024, 12:05 PM · gpgrt, MacOS, Bug Report
Jakuje added a comment to T7167: The libgcrypt 1.11.0 tests fail on s390x.

Thank you for having a look into that. If I see right, Fedora has a real s390 hardware for builders so I can verify the fix when available.

Jun 20 2024, 9:43 AM · libgcrypt, s390, Bug Report
jukivili added a comment to T7167: The libgcrypt 1.11.0 tests fail on s390x.

Algo 329 and 330 are the new CSHAKE128 and CSHAKE256 digest algos. Looks that s390x only support accelerating SHA3 and SHAKE, as only SHA3 and SHAKE suffix are supported (see keccak_final_s390x()). So s390x acceleration needs to be disabled for CSHAKE algos.

Jun 20 2024, 6:06 AM · libgcrypt, s390, Bug Report
debohman created T7170: Building libgcrypt-1.11.0 produces a dylib with unresolved symbols at runtime.
Jun 20 2024, 3:23 AM · MacOS, libgcrypt, Bug Report
debohman added a comment to T7169: libgpg-error 1.50 build issue (spawn-posix.c:345:5: error: use of undeclared identifier 'environ').

I encountered this also on macOS. Apparently, Apple does not provide an declaration for environ, in contradiction to the manual page for execv.

Jun 20 2024, 2:59 AM · gpgrt, MacOS, Bug Report

Jun 19 2024

Marius_Schamschula created T7169: libgpg-error 1.50 build issue (spawn-posix.c:345:5: error: use of undeclared identifier 'environ').
Jun 19 2024, 11:28 PM · gpgrt, MacOS, Bug Report
werner added a parent task for T7168: environ not declared in macOS; gpgrt 1.50 failed to build.: T7102: Release GpgRT 1.50.
Jun 19 2024, 10:39 PM · gpgrt, Bug Report, MacOS
werner triaged T7168: environ not declared in macOS; gpgrt 1.50 failed to build. as Normal priority.
Jun 19 2024, 10:38 PM · gpgrt, Bug Report, MacOS
werner added a parent task for T7167: The libgcrypt 1.11.0 tests fail on s390x: T7165: Release Libgcrypt 1.11.0.
Jun 19 2024, 10:31 PM · libgcrypt, s390, Bug Report
Jakuje created T7167: The libgcrypt 1.11.0 tests fail on s390x.
Jun 19 2024, 2:36 PM · libgcrypt, s390, Bug Report
werner closed T5822: libgcrypt: Remove GCRYCTL_ENABLE_M_GUARD support (was: _gcry_private_malloc returns 4-byte alignment memory when use_m_guard==1) as Resolved.
Jun 19 2024, 12:12 PM · Bug Report, libgcrypt
werner closed T7130: Fix static reports by static analyser in libgcrypt as Resolved.
Jun 19 2024, 12:12 PM · libgcrypt, Bug Report
werner closed T6976: RSA PKCS#1v1.5 signatures with SHA3 use invalid encoding as Resolved.
Jun 19 2024, 12:11 PM · FIPS, libgcrypt, Bug Report
werner closed T7035: libgcrypt: New function gcry_md_hash_buffers_ext (for extendable-output function) as Resolved.
Jun 19 2024, 12:10 PM · libgcrypt, Feature Request, Bug Report
werner closed T6557: Support of SHAKE in MGF function of RSA, a subtask of T6539: The digest&sign/verify API with SHAKE-class digests does not work, as Resolved.
Jun 19 2024, 12:10 PM · libgcrypt, FIPS, Bug Report
werner closed T6557: Support of SHAKE in MGF function of RSA as Resolved.
Jun 19 2024, 12:10 PM · libgcrypt, FIPS, Bug Report
ikloecker added a project to T7154: Kleopatra: Dragging and dropping a certificate from the main view onto itself shouldn't trigger an import: vsd33.

I backported this trivial fix for VSD 3.3. Support for drag&drop of certificates from Kleopatra to other applications or the desktop was added for VSD 3.3 (T6893) and it shouldn't confuse the users.

Jun 19 2024, 11:16 AM · gpd5x, Bug Report, kleopatra

Jun 18 2024

TobiasFella changed the status of T7154: Kleopatra: Dragging and dropping a certificate from the main view onto itself shouldn't trigger an import from Open to Testing.
Jun 18 2024, 4:41 PM · gpd5x, Bug Report, kleopatra
ebo lowered the priority of T7158: Kleopatra: Crash when doing a lookup on server from Unbreak Now! to High.
Jun 18 2024, 4:15 PM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra, Bug Report
ebo changed the status of T7158: Kleopatra: Crash when doing a lookup on server from Open to Testing.
Jun 18 2024, 4:15 PM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra, Bug Report

Jun 17 2024

ikloecker moved T7158: Kleopatra: Crash when doing a lookup on server from Backlog to WiP on the vsd33 board.

Backported for VSD 3.3

Jun 17 2024, 5:34 PM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra, Bug Report
bernhard created T7162: handle python interact() check like c check.
Jun 17 2024, 4:40 PM · Python, gpgme, Bug Report
TobiasFella moved T7154: Kleopatra: Dragging and dropping a certificate from the main view onto itself shouldn't trigger an import from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Jun 17 2024, 3:04 PM · gpd5x, Bug Report, kleopatra
TobiasFella set External Link to https://invent.kde.org/pim/kleopatra/-/merge_requests/228 on T7154: Kleopatra: Dragging and dropping a certificate from the main view onto itself shouldn't trigger an import.
Jun 17 2024, 3:04 PM · gpd5x, Bug Report, kleopatra
TobiasFella set External Link to https://invent.kde.org/pim/kleopatra/-/merge_requests/227 on T7158: Kleopatra: Crash when doing a lookup on server.
Jun 17 2024, 2:42 PM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra, Bug Report
TobiasFella moved T7158: Kleopatra: Crash when doing a lookup on server from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Jun 17 2024, 2:42 PM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra, Bug Report
werner triaged T7108: Confusing error messages and loss of keyring if Windows TEMP directory is unaccessible as Low priority.
Jun 17 2024, 2:05 PM · gpgex, Windows, Bug Report, gpg4win
werner triaged T7154: Kleopatra: Dragging and dropping a certificate from the main view onto itself shouldn't trigger an import as Normal priority.
Jun 17 2024, 2:03 PM · gpd5x, Bug Report, kleopatra
werner triaged T7158: Kleopatra: Crash when doing a lookup on server as Unbreak Now! priority.
Jun 17 2024, 2:01 PM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra, Bug Report
ikloecker added a comment to T7158: Kleopatra: Crash when doing a lookup on server.

I'm wondering whether we are hit by undefined behavior. https://en.cppreference.com/w/cpp/algorithm/sort mentions some conditions that must be met for (un)defined behavior. Or it's a bug in gcc or gcc's STL. I added some debug logs to the comparison lambda. The first comparisons look fine but after a certain number of comparisons it crashes in the debug logging (when it tries to access the primary fingerprint).

Jun 17 2024, 1:46 PM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra, Bug Report
gniibe added projects to T7151: graceful shutdown: DEVINFO should be a gpg-agent command: also watching input close: scd, gpgagent.
Jun 17 2024, 4:49 AM · gpgagent, scd, gnupg24, Bug Report
gniibe triaged T7160: scd: pipe server shutdown as Normal priority.
Jun 17 2024, 4:48 AM · scd, gpgagent, Bug Report

Jun 14 2024

ikloecker created T7158: Kleopatra: Crash when doing a lookup on server.
Jun 14 2024, 4:48 PM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra, Bug Report
ikloecker moved T7157: Kleopatra: Shows success message when deleting secret key after moving to smart card fails from Backlog to WiP on the vsd33 board.

When VSD33 has been updated to integrate the fix/commit then this can be closed (i.e. set to vsd-3.3.0) without manual test, in my opinion.

Jun 14 2024, 11:08 AM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra, Bug Report
ikloecker closed T7157: Kleopatra: Shows success message when deleting secret key after moving to smart card fails as Resolved.

The (rather trivial) changes where reviewed by Sune. And it's not really a very important issue. Therefore, I'll set it directly to resolved.

Jun 14 2024, 11:04 AM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra, Bug Report
ikloecker added a project to T7157: Kleopatra: Shows success message when deleting secret key after moving to smart card fails: vsd33.

Merged to VSD33.

Jun 14 2024, 11:02 AM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra, Bug Report
ikloecker updated the task description for T7157: Kleopatra: Shows success message when deleting secret key after moving to smart card fails.
Jun 14 2024, 10:45 AM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra, Bug Report
ikloecker triaged T7157: Kleopatra: Shows success message when deleting secret key after moving to smart card fails as Normal priority.
Jun 14 2024, 10:30 AM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra, Bug Report
ikloecker claimed T7157: Kleopatra: Shows success message when deleting secret key after moving to smart card fails.
Jun 14 2024, 10:30 AM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra, Bug Report
ikloecker created T7157: Kleopatra: Shows success message when deleting secret key after moving to smart card fails.
Jun 14 2024, 10:29 AM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra, Bug Report
modernNeo created T7156: do not get prompted to save passphrase to password manager when using pinentry-curses.
Jun 14 2024, 6:45 AM · pinentry, Feature Request

Jun 13 2024

ikloecker created T7154: Kleopatra: Dragging and dropping a certificate from the main view onto itself shouldn't trigger an import.
Jun 13 2024, 3:57 PM · gpd5x, Bug Report, kleopatra
werner triaged T7151: graceful shutdown: DEVINFO should be a gpg-agent command: also watching input close as High priority.
Jun 13 2024, 12:38 PM · gpgagent, scd, gnupg24, Bug Report
werner updated subscribers of T7151: graceful shutdown: DEVINFO should be a gpg-agent command: also watching input close.
Jun 13 2024, 10:19 AM · gpgagent, scd, gnupg24, Bug Report

Jun 12 2024

gniibe claimed T7151: graceful shutdown: DEVINFO should be a gpg-agent command: also watching input close.
Jun 12 2024, 6:42 AM · gpgagent, scd, gnupg24, Bug Report
gniibe created T7151: graceful shutdown: DEVINFO should be a gpg-agent command: also watching input close.
Jun 12 2024, 6:42 AM · gpgagent, scd, gnupg24, Bug Report

Jun 10 2024

ebo moved T6447: Kleopatra: "imported certificates" tab inconsistencies from WiP to QA on the vsd33 board.
Jun 10 2024, 9:26 AM · vsd33 (vsd-3.3.0), Restricted Project, Bug Report, kleopatra
ebo moved T7048: Kleopatra: Config dialog doesn't load "Treat .p7m files without extensions as mails" option from WiP to QA on the vsd33 board.
Jun 10 2024, 9:26 AM · vsd33 (vsd-3.3.0), Restricted Project, kleopatra, Bug Report

Jun 7 2024

gniibe triaged T7138: Windows (Semi-hosted environment): filename and network access as Wishlist priority.

Since it is only me, let us set the "Wishlist" priority on this task.

Jun 7 2024, 7:22 AM · gnupg, Bug Report

Jun 6 2024

werner moved T7129: Fix static reports by static analyser in gnugp from QA to gnupg-2.2.44 on the gnupg22 board.
Jun 6 2024, 12:09 PM · gnupg22 (gnupg-2.2.44), gnupg24 (2.4.6), Bug Report
werner closed T7129: Fix static reports by static analyser in gnugp as Resolved.

Not much QA can do here.

Jun 6 2024, 12:07 PM · gnupg22 (gnupg-2.2.44), gnupg24 (2.4.6), Bug Report
werner moved T7129: Fix static reports by static analyser in gnugp from QA to 2.4.6 on the gnupg24 board.
Jun 6 2024, 12:06 PM · gnupg22 (gnupg-2.2.44), gnupg24 (2.4.6), Bug Report