Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
libkleo
Commits
50bea92e
Commit
50bea92e
authored
Apr 28, 2021
by
Ingo Klöcker
Browse files
Simplify adding signing key to result
GnuPG-bug-id: 5283
parent
fde4ff96
Changes
1
Show whitespace changes
Inline
Side-by-side
src/kleo/keyresolvercore.cpp
View file @
50bea92e
...
...
@@ -319,9 +319,7 @@ void KeyResolverCore::Private::setSigningKeys(const QStringList &fingerprints)
qCDebug
(
LIBKLEO_LOG
)
<<
"Failed to find signing key with fingerprint"
<<
fpr
;
continue
;
}
auto
list
=
mSigKeys
.
value
(
key
.
protocol
());
list
.
push_back
(
key
);
mSigKeys
.
insert
(
key
.
protocol
(),
list
);
mSigKeys
[
key
.
protocol
()].
push_back
(
key
);
}
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment