From: oreo639 <oreo639@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] gpgme: fix returning incorrect error codes
Date: Tue, 18 Oct 2022 09:07:03 +0200 [thread overview]
Message-ID: <20221018070703.CWTUraOlvz96vz1l9dpfwgaE-1Q0n--pO_c8XX6XloE@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-38825@inbox.vuxu.org>
[-- Attachment #1: Type: text/plain, Size: 1323 bytes --]
There is an updated pull request by oreo639 against master on the void-packages repository
https://github.com/oreo639/void-packages gpgme
https://github.com/void-linux/void-packages/pull/38825
gpgme: fix returning incorrect error codes
<!-- Uncomment relevant sections and delete options which are not applicable -->
#### Testing the changes
- I tested the changes in this PR: **briefly**
I tested gpgme with pacman and haven't noticed any issues.
<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->
<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- aarch64-musl
- armv7l
- armv6l-musl
-->
A patch file from https://github.com/void-linux/void-packages/pull/38825.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-gpgme-38825.patch --]
[-- Type: text/x-diff, Size: 18680 bytes --]
From 802a4659a2f5e224bd8bcdc76539e46ccaa4d22a Mon Sep 17 00:00:00 2001
From: oreo639 <oreo6391@gmail.com>
Date: Mon, 17 Oct 2022 21:20:40 -0700
Subject: [PATCH] gpgme: fix returning incorrect error codes
Catch integer overflow on 32-bit tests. This also fixes an issue
with gpgme returning the wrong error codes.
---
.../gpgme/patches/0001-tests-log-error.patch | 51 ++++++
.../0002-tests-expiration-time-unsigned.patch | 159 ++++++++++++++++++
.../gpgme/patches/0003-tests-fix-32bit.patch | 75 +++++++++
.../gpgme/patches/fix-error-conditions.patch | 40 +++++
srcpkgs/gpgme/template | 2 +-
5 files changed, 326 insertions(+), 1 deletion(-)
create mode 100644 srcpkgs/gpgme/patches/0001-tests-log-error.patch
create mode 100644 srcpkgs/gpgme/patches/0002-tests-expiration-time-unsigned.patch
create mode 100644 srcpkgs/gpgme/patches/0003-tests-fix-32bit.patch
create mode 100644 srcpkgs/gpgme/patches/fix-error-conditions.patch
diff --git a/srcpkgs/gpgme/patches/0001-tests-log-error.patch b/srcpkgs/gpgme/patches/0001-tests-log-error.patch
new file mode 100644
index 000000000000..50443efe2e7e
--- /dev/null
+++ b/srcpkgs/gpgme/patches/0001-tests-log-error.patch
@@ -0,0 +1,51 @@
+From 81d4b7f2d7077297d76af5728949d8f2bdff8cd5 Mon Sep 17 00:00:00 2001
+From: =?utf8?q?Ingo=20Kl=C3=B6cker?= <dev@ingo-kloecker.de>
+Date: Wed, 17 Aug 2022 14:56:13 +0200
+Subject: [PATCH] qt,tests: Log the actual error code if the assertion fails
+
+* lang/qt/tests/t-addexistingsubkey.cpp (
+AddExistingSubkeyJobTest::testAddExistingSubkeyAsync,
+AddExistingSubkeyJobTest::testAddExistingSubkeySync,
+AddExistingSubkeyJobTest::testAddExistingSubkeyWithExpiration): Use
+QCOMPARE instead of QVERIFY for asserting equality.
+--
+
+GnuPG-bug-id: 6137
+---
+ lang/qt/tests/t-addexistingsubkey.cpp | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/lang/qt/tests/t-addexistingsubkey.cpp b/lang/qt/tests/t-addexistingsubkey.cpp
+index 589c90bf..2e654cec 100644
+--- a/lang/qt/tests/t-addexistingsubkey.cpp
++++ b/lang/qt/tests/t-addexistingsubkey.cpp
+@@ -168,7 +168,7 @@ private Q_SLOTS:
+ QSignalSpy spy (this, SIGNAL(asyncDone()));
+ QVERIFY(spy.wait(QSIGNALSPY_TIMEOUT));
+
+- QVERIFY(result.code() == GPG_ERR_NO_ERROR);
++ QCOMPARE(result.code(), static_cast<int>(GPG_ERR_NO_ERROR));
+ key.update();
+ QCOMPARE(key.numSubkeys(), 3u);
+ }
+@@ -190,7 +190,7 @@ private Q_SLOTS:
+
+ const auto result = job->exec(key, sourceSubkey);
+
+- QVERIFY(result.code() == GPG_ERR_NO_ERROR);
++ QCOMPARE(result.code(), static_cast<int>(GPG_ERR_NO_ERROR));
+ key.update();
+ QCOMPARE(key.numSubkeys(), 3u);
+ QCOMPARE(key.subkey(2).expirationTime(), 0);
+@@ -213,7 +213,7 @@ private Q_SLOTS:
+
+ const auto result = job->exec(key, sourceSubkey);
+
+- QVERIFY(result.code() == GPG_ERR_NO_ERROR);
++ QCOMPARE(result.code(), static_cast<int>(GPG_ERR_NO_ERROR));
+ key.update();
+ QCOMPARE(key.numSubkeys(), 3u);
+
+--
+2.11.0
+
diff --git a/srcpkgs/gpgme/patches/0002-tests-expiration-time-unsigned.patch b/srcpkgs/gpgme/patches/0002-tests-expiration-time-unsigned.patch
new file mode 100644
index 000000000000..57aef8852a12
--- /dev/null
+++ b/srcpkgs/gpgme/patches/0002-tests-expiration-time-unsigned.patch
@@ -0,0 +1,159 @@
+From f2b48de26b8f8c48c293423eda712831544924f6 Mon Sep 17 00:00:00 2001
+From: =?utf8?q?Ingo=20Kl=C3=B6cker?= <dev@ingo-kloecker.de>
+Date: Wed, 17 Aug 2022 15:22:29 +0200
+Subject: [PATCH] qt,tests: Make sure expiration time is interpreted as
+ unsigned number
+
+* lang/qt/tests/t-addexistingsubkey.cpp,
+lang/qt/tests/t-changeexpiryjob.cpp: Convert expiration time to
+uint_least32_t.
+--
+
+This doesn't change the outcome of the tests (they also pass without
+this change because of the expiration dates of the test keys), but it's
+still good practise to treat the expiration time as an unsigned number
+if the assertions check that the expiration time is in some range.
+
+GnuPG-bug-id: 6137
+---
+ lang/qt/tests/t-addexistingsubkey.cpp | 6 +++---
+ lang/qt/tests/t-changeexpiryjob.cpp | 26 +++++++++++++-------------
+ 2 files changed, 16 insertions(+), 16 deletions(-)
+
+diff --git a/lang/qt/tests/t-addexistingsubkey.cpp b/lang/qt/tests/t-addexistingsubkey.cpp
+index 2e654cec..87eadf43 100644
+--- a/lang/qt/tests/t-addexistingsubkey.cpp
++++ b/lang/qt/tests/t-addexistingsubkey.cpp
+@@ -222,9 +222,9 @@ private Q_SLOTS:
+ // several times
+ const auto allowedDeltaTSeconds = 1;
+ const auto expectedExpirationRange = std::make_pair(
+- sourceSubkey.expirationTime() - allowedDeltaTSeconds,
+- sourceSubkey.expirationTime() + allowedDeltaTSeconds);
+- const auto actualExpiration = key.subkey(2).expirationTime();
++ uint_least32_t(sourceSubkey.expirationTime()) - allowedDeltaTSeconds,
++ uint_least32_t(sourceSubkey.expirationTime()) + allowedDeltaTSeconds);
++ const auto actualExpiration = uint_least32_t(key.subkey(2).expirationTime());
+ QVERIFY2(actualExpiration >= expectedExpirationRange.first,
+ ("actual: " + std::to_string(actualExpiration) +
+ "; expected: " + std::to_string(expectedExpirationRange.first)).c_str());
+diff --git a/lang/qt/tests/t-changeexpiryjob.cpp b/lang/qt/tests/t-changeexpiryjob.cpp
+index 090002f3..3da74d46 100644
+--- a/lang/qt/tests/t-changeexpiryjob.cpp
++++ b/lang/qt/tests/t-changeexpiryjob.cpp
+@@ -70,7 +70,7 @@ private Q_SLOTS:
+ QVERIFY(!key.isNull());
+ QVERIFY(!key.subkey(0).isNull());
+ QVERIFY(!key.subkey(1).isNull());
+- const auto subkeyExpiration = key.subkey(1).expirationTime();
++ const auto subkeyExpiration = uint_least32_t(key.subkey(1).expirationTime());
+
+ {
+ // Create the job
+@@ -101,7 +101,7 @@ private Q_SLOTS:
+ newExpirationDate.toSecsSinceEpoch() - 10,
+ QDateTime::currentDateTime().addDays(1).toSecsSinceEpoch());
+ {
+- const auto actualExpiration = key.subkey(0).expirationTime();
++ const auto actualExpiration = uint_least32_t(key.subkey(0).expirationTime());
+ QVERIFY2(actualExpiration >= expectedExpirationRange.first,
+ ("actual: " + std::to_string(actualExpiration) +
+ "; expected: " + std::to_string(expectedExpirationRange.first)).c_str());
+@@ -110,7 +110,7 @@ private Q_SLOTS:
+ "; expected: " + std::to_string(expectedExpirationRange.second)).c_str());
+ }
+ {
+- const auto actualExpiration = key.subkey(1).expirationTime();
++ const auto actualExpiration = uint_least32_t(key.subkey(1).expirationTime());
+ QCOMPARE(actualExpiration, subkeyExpiration); // unchanged
+ }
+ }
+@@ -133,7 +133,7 @@ private Q_SLOTS:
+ QVERIFY(!key.isNull());
+ QVERIFY(!key.subkey(0).isNull());
+ QVERIFY(!key.subkey(1).isNull());
+- const auto primaryKeyExpiration = key.subkey(0).expirationTime();
++ const auto primaryKeyExpiration = uint_least32_t(key.subkey(0).expirationTime());
+
+ {
+ // Create the job
+@@ -164,11 +164,11 @@ private Q_SLOTS:
+ newExpirationDate.toSecsSinceEpoch() - 10,
+ QDateTime::currentDateTime().addDays(2).toSecsSinceEpoch());
+ {
+- const auto actualExpiration = key.subkey(0).expirationTime();
++ const auto actualExpiration = uint_least32_t(key.subkey(0).expirationTime());
+ QCOMPARE(actualExpiration, primaryKeyExpiration); // unchanged
+ }
+ {
+- const auto actualExpiration = key.subkey(1).expirationTime();
++ const auto actualExpiration = uint_least32_t(key.subkey(1).expirationTime());
+ QVERIFY2(actualExpiration >= expectedExpirationRange.first,
+ ("actual: " + std::to_string(actualExpiration) +
+ "; expected: " + std::to_string(expectedExpirationRange.first)).c_str());
+@@ -196,7 +196,7 @@ private Q_SLOTS:
+ QVERIFY(!key.isNull());
+ QVERIFY(!key.subkey(0).isNull());
+ QVERIFY(!key.subkey(1).isNull());
+- const auto subkeyExpiration = key.subkey(1).expirationTime();
++ const auto subkeyExpiration = uint_least32_t(key.subkey(1).expirationTime());
+
+ {
+ // Create the job
+@@ -228,7 +228,7 @@ private Q_SLOTS:
+ newExpirationDate.toSecsSinceEpoch() - 10,
+ QDateTime::currentDateTime().addDays(3).toSecsSinceEpoch());
+ {
+- const auto actualExpiration = key.subkey(0).expirationTime();
++ const auto actualExpiration = uint_least32_t(key.subkey(0).expirationTime());
+ QVERIFY2(actualExpiration >= expectedExpirationRange.first,
+ ("actual: " + std::to_string(actualExpiration) +
+ "; expected: " + std::to_string(expectedExpirationRange.first)).c_str());
+@@ -237,7 +237,7 @@ private Q_SLOTS:
+ "; expected: " + std::to_string(expectedExpirationRange.second)).c_str());
+ }
+ {
+- const auto actualExpiration = key.subkey(1).expirationTime();
++ const auto actualExpiration = uint_least32_t(key.subkey(1).expirationTime());
+ QCOMPARE(actualExpiration, subkeyExpiration); // unchanged
+ }
+ }
+@@ -291,7 +291,7 @@ private Q_SLOTS:
+ newExpirationDate.toSecsSinceEpoch() - 10,
+ QDateTime::currentDateTime().addDays(4).toSecsSinceEpoch());
+ {
+- const auto actualExpiration = key.subkey(0).expirationTime();
++ const auto actualExpiration = uint_least32_t(key.subkey(0).expirationTime());
+ QVERIFY2(actualExpiration >= expectedExpirationRange.first,
+ ("actual: " + std::to_string(actualExpiration) +
+ "; expected: " + std::to_string(expectedExpirationRange.first)).c_str());
+@@ -300,7 +300,7 @@ private Q_SLOTS:
+ "; expected: " + std::to_string(expectedExpirationRange.second)).c_str());
+ }
+ {
+- const auto actualExpiration = key.subkey(1).expirationTime();
++ const auto actualExpiration = uint_least32_t(key.subkey(1).expirationTime());
+ QVERIFY2(actualExpiration >= expectedExpirationRange.first,
+ ("actual: " + std::to_string(actualExpiration) +
+ "; expected: " + std::to_string(expectedExpirationRange.first)).c_str());
+@@ -359,7 +359,7 @@ private Q_SLOTS:
+ newExpirationDate.toSecsSinceEpoch() - 10,
+ QDateTime::currentDateTime().addDays(5).toSecsSinceEpoch());
+ {
+- const auto actualExpiration = key.subkey(0).expirationTime();
++ const auto actualExpiration = uint_least32_t(key.subkey(0).expirationTime());
+ QVERIFY2(actualExpiration >= expectedExpirationRange.first,
+ ("actual: " + std::to_string(actualExpiration) +
+ "; expected: " + std::to_string(expectedExpirationRange.first)).c_str());
+@@ -368,7 +368,7 @@ private Q_SLOTS:
+ "; expected: " + std::to_string(expectedExpirationRange.second)).c_str());
+ }
+ {
+- const auto actualExpiration = key.subkey(1).expirationTime();
++ const auto actualExpiration = uint_least32_t(key.subkey(1).expirationTime());
+ QVERIFY2(actualExpiration >= expectedExpirationRange.first,
+ ("actual: " + std::to_string(actualExpiration) +
+ "; expected: " + std::to_string(expectedExpirationRange.first)).c_str());
+--
+2.11.0
+
diff --git a/srcpkgs/gpgme/patches/0003-tests-fix-32bit.patch b/srcpkgs/gpgme/patches/0003-tests-fix-32bit.patch
new file mode 100644
index 000000000000..aaaf57582f00
--- /dev/null
+++ b/srcpkgs/gpgme/patches/0003-tests-fix-32bit.patch
@@ -0,0 +1,75 @@
+From 2e7a61b898fccc1c20000b79dee83cd980901fa9 Mon Sep 17 00:00:00 2001
+From: =?utf8?q?Ingo=20Kl=C3=B6cker?= <dev@ingo-kloecker.de>
+Date: Thu, 18 Aug 2022 10:55:09 +0200
+Subject: [PATCH] qt,tests: Make test pass on 32-bit systems
+
+* lang/qt/tests/t-addexistingsubkey.cpp
+(AddExistingSubkeyJobTest::testAddExistingSubkeyWithExpiration): Handle
+negative expiration date.
+--
+
+On 32-bit systems the expiration date of the test key overflows. This
+will cause the AddExistingSubkeyJob to fail. We expect it to fail with
+an "invalid time" error.
+
+GnuPG-bug-id: 6137
+---
+ lang/qt/tests/t-addexistingsubkey.cpp | 42 ++++++++++++++++++++---------------
+ 1 file changed, 24 insertions(+), 18 deletions(-)
+
+diff --git a/lang/qt/tests/t-addexistingsubkey.cpp b/lang/qt/tests/t-addexistingsubkey.cpp
+index 87eadf43..c0eee57b 100644
+--- a/lang/qt/tests/t-addexistingsubkey.cpp
++++ b/lang/qt/tests/t-addexistingsubkey.cpp
+@@ -213,24 +213,30 @@ private Q_SLOTS:
+
+ const auto result = job->exec(key, sourceSubkey);
+
+- QCOMPARE(result.code(), static_cast<int>(GPG_ERR_NO_ERROR));
+- key.update();
+- QCOMPARE(key.numSubkeys(), 3u);
+-
+- // allow 1 second different expiration because gpg calculates with
+- // expiration as difference to current time and takes current time
+- // several times
+- const auto allowedDeltaTSeconds = 1;
+- const auto expectedExpirationRange = std::make_pair(
+- uint_least32_t(sourceSubkey.expirationTime()) - allowedDeltaTSeconds,
+- uint_least32_t(sourceSubkey.expirationTime()) + allowedDeltaTSeconds);
+- const auto actualExpiration = uint_least32_t(key.subkey(2).expirationTime());
+- QVERIFY2(actualExpiration >= expectedExpirationRange.first,
+- ("actual: " + std::to_string(actualExpiration) +
+- "; expected: " + std::to_string(expectedExpirationRange.first)).c_str());
+- QVERIFY2(actualExpiration <= expectedExpirationRange.second,
+- ("actual: " + std::to_string(actualExpiration) +
+- "; expected: " + std::to_string(expectedExpirationRange.second)).c_str());
++ if (sourceSubkey.expirationTime() > 0) {
++ QCOMPARE(result.code(), static_cast<int>(GPG_ERR_NO_ERROR));
++ key.update();
++ QCOMPARE(key.numSubkeys(), 3u);
++
++ // allow 1 second different expiration because gpg calculates with
++ // expiration as difference to current time and takes current time
++ // several times
++ const auto allowedDeltaTSeconds = 1;
++ const auto expectedExpirationRange = std::make_pair(
++ uint_least32_t(sourceSubkey.expirationTime()) - allowedDeltaTSeconds,
++ uint_least32_t(sourceSubkey.expirationTime()) + allowedDeltaTSeconds);
++ const auto actualExpiration = uint_least32_t(key.subkey(2).expirationTime());
++ QVERIFY2(actualExpiration >= expectedExpirationRange.first,
++ ("actual: " + std::to_string(actualExpiration) +
++ "; expected: " + std::to_string(expectedExpirationRange.first)).c_str());
++ QVERIFY2(actualExpiration <= expectedExpirationRange.second,
++ ("actual: " + std::to_string(actualExpiration) +
++ "; expected: " + std::to_string(expectedExpirationRange.second)).c_str());
++ } else {
++ // on 32-bit systems the expiration date of the test key overflows;
++ // in this case we expect an appropriate error code
++ QCOMPARE(result.code(), static_cast<int>(GPG_ERR_INV_TIME));
++ }
+ }
+
+ private:
+--
+2.11.0
+
diff --git a/srcpkgs/gpgme/patches/fix-error-conditions.patch b/srcpkgs/gpgme/patches/fix-error-conditions.patch
new file mode 100644
index 000000000000..f70e167784ce
--- /dev/null
+++ b/srcpkgs/gpgme/patches/fix-error-conditions.patch
@@ -0,0 +1,40 @@
+From 2fa5c80aeba4528b3bdf41ec5740e7db5d4b6d2b Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ingo=20Kl=C3=B6cker?= <dev@ingo-kloecker.de>
+Date: Thu, 18 Aug 2022 10:43:19 +0200
+Subject: [PATCH] cpp: Fix handling of "no key" or "invalid time" situations
+
+* lang/cpp/src/gpgaddexistingsubkeyeditinteractor.cpp
+(GpgAddExistingSubkeyEditInteractor::Private::nextState): Fix inverted
+logic of string comparisons.
+--
+
+This fixes the problem that the interactor didn't return the proper
+error code if gpg didn't accept the key grip or the expiration date.
+
+GnuPG-bug-id: 6137
+---
+ lang/cpp/src/gpgaddexistingsubkeyeditinteractor.cpp | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/lang/cpp/src/gpgaddexistingsubkeyeditinteractor.cpp b/lang/cpp/src/gpgaddexistingsubkeyeditinteractor.cpp
+index 547e613d..8eec7460 100644
+--- a/lang/cpp/src/gpgaddexistingsubkeyeditinteractor.cpp
++++ b/lang/cpp/src/gpgaddexistingsubkeyeditinteractor.cpp
+@@ -136,7 +136,7 @@ unsigned int GpgAddExistingSubkeyEditInteractor::Private::nextState(unsigned int
+ strcmp(args, "keygen.flags") == 0) {
+ return FLAGS;
+ } else if (status == GPGME_STATUS_GET_LINE &&
+- strcmp(args, "keygen.keygrip")) {
++ strcmp(args, "keygen.keygrip") == 0) {
+ err = NO_KEY_ERROR;
+ return ERROR;
+ }
+@@ -157,7 +157,7 @@ unsigned int GpgAddExistingSubkeyEditInteractor::Private::nextState(unsigned int
+ strcmp(args, "keyedit.prompt") == 0) {
+ return QUIT;
+ } else if (status == GPGME_STATUS_GET_LINE &&
+- strcmp(args, "keygen.valid")) {
++ strcmp(args, "keygen.valid") == 0) {
+ err = INV_TIME_ERROR;
+ return ERROR;
+ }
diff --git a/srcpkgs/gpgme/template b/srcpkgs/gpgme/template
index b1cfd5f78657..249d7b472eb9 100644
--- a/srcpkgs/gpgme/template
+++ b/srcpkgs/gpgme/template
@@ -1,7 +1,7 @@
# Template file for 'gpgme'
pkgname=gpgme
version=1.18.0
-revision=1
+revision=2
build_style=gnu-configure
configure_args="--enable-fd-passing
--with-libgpg-error-prefix=$XBPS_CROSS_BASE/usr
next prev parent reply other threads:[~2022-10-18 7:07 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-22 5:58 [PR PATCH] gpgme: update to 1.18.0 oreo639
2022-08-22 6:07 ` [PR PATCH] [Updated] " oreo639
2022-08-22 6:12 ` oreo639
2022-08-22 7:22 ` oreo639
2022-09-08 2:27 ` classabbyamp
2022-09-08 2:28 ` classabbyamp
2022-09-08 2:28 ` classabbyamp
2022-09-08 21:39 ` [PR PATCH] [Updated] " oreo639
2022-09-08 22:36 ` oreo639
2022-09-08 22:52 ` oreo639
2022-09-09 0:56 ` oreo639
2022-09-09 2:27 ` oreo639
2022-09-09 2:35 ` oreo639
2022-09-14 10:56 ` [PR PATCH] [Updated] " oreo639
2022-09-14 11:07 ` oreo639
2022-09-14 11:20 ` oreo639
2022-09-14 11:45 ` oreo639
2022-09-14 12:11 ` oreo639
2022-09-14 12:27 ` oreo639
2022-09-14 19:43 ` oreo639
2022-09-14 20:43 ` oreo639
2022-09-14 20:49 ` oreo639
2022-09-15 7:32 ` oreo639
2022-10-04 9:05 ` oreo639
2022-10-18 3:38 ` classabbyamp
2022-10-18 3:38 ` [PR PATCH] [Closed]: " classabbyamp
2022-10-18 4:17 ` oreo639
2022-10-18 4:19 ` classabbyamp
2022-10-18 4:21 ` [PR PATCH] [Updated] " oreo639
2022-10-18 4:21 ` oreo639
2022-10-18 4:22 ` [PR PATCH] [Updated] gpgme: fix returning incorrect error codes oreo639
2022-10-18 4:24 ` oreo639
2022-10-18 4:31 ` classabbyamp
2022-10-18 4:33 ` oreo639
2022-10-18 4:33 ` oreo639
2022-10-18 7:07 ` oreo639 [this message]
2022-10-18 8:43 ` [PR PATCH] [Updated] " oreo639
2022-10-18 9:50 ` [PR PATCH] [Merged]: " classabbyamp
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20221018070703.CWTUraOlvz96vz1l9dpfwgaE-1Q0n--pO_c8XX6XloE@z \
--to=oreo639@users.noreply.github.com \
--cc=ml@inbox.vuxu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).