summaryrefslogtreecommitdiff
path: root/apt-pkg/acquire-item.cc
diff options
context:
space:
mode:
authorJulian Andres Klode <julian.klode@canonical.com>2025-03-04 11:07:14 +0100
committerJulian Andres Klode <julian.klode@canonical.com>2025-03-04 11:07:51 +0100
commit991eb5025a35155e57005b2e2be38f66ec5dd1a4 (patch)
treeaaacabb34b3a64f3dd5fcedae7ba6859dccc5aff /apt-pkg/acquire-item.cc
parent939aa53621fd6b884b1d3d48a7abc55bf6c16ca4 (diff)
Replace "GPG error" with "OpenPGP signature verification failed"
Reported-by: cacin on irc
Diffstat (limited to 'apt-pkg/acquire-item.cc')
-rw-r--r--apt-pkg/acquire-item.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc
index 87e5ddefb..c692b5281 100644
--- a/apt-pkg/acquire-item.cc
+++ b/apt-pkg/acquire-item.cc
@@ -1378,20 +1378,20 @@ bool pkgAcqMetaBase::CheckStopAuthentication(pkgAcquire::Item * const I, const s
I->Status = StatTransientNetworkError;
_error->Warning(_("An error occurred during the signature verification. "
"The repository is not updated and the previous index files will be used. "
- "GPG error: %s: %s"),
+ "OpenPGP signature verification failed: %s: %s"),
Desc.Description.c_str(),
GPGError.c_str());
RunScripts("APT::Update::Auth-Failure");
return true;
} else if (LookupTag(Message,"Message").find("NODATA") != string::npos) {
/* Invalid signature file, reject (LP: #346386) (Closes: #627642) */
- _error->Error(_("GPG error: %s: %s"),
+ _error->Error(_("OpenPGP signature verification failed: %s: %s"),
Desc.Description.c_str(),
GPGError.c_str());
I->Status = StatAuthError;
return true;
} else {
- _error->Warning(_("GPG error: %s: %s"),
+ _error->Warning(_("OpenPGP signature verification failed: %s: %s"),
Desc.Description.c_str(),
GPGError.c_str());
}