Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
Kleopatra
Commits
bba1d954
Commit
bba1d954
authored
Nov 18, 2020
by
Ingo Klöcker
Browse files
Do not set an empty remark to avoid an empty signature notation
This is a workaround for GnuPG bug T5142. GnuPG-bug-id: 5142
parent
38eb236a
Pipeline
#41380
failed with stage
in 10 minutes and 25 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/commands/certifycertificatecommand.cpp
View file @
bba1d954
...
@@ -287,7 +287,10 @@ void CertifyCertificateCommand::Private::slotCertificationPrepared()
...
@@ -287,7 +287,10 @@ void CertifyCertificateCommand::Private::slotCertificationPrepared()
job
->
setSigningKey
(
dialog
->
selectedSecretKey
());
job
->
setSigningKey
(
dialog
->
selectedSecretKey
());
job
->
setCheckLevel
(
dialog
->
selectedCheckLevel
());
job
->
setCheckLevel
(
dialog
->
selectedCheckLevel
());
#ifdef GPGME_HAS_REMARKS
#ifdef GPGME_HAS_REMARKS
job
->
setRemark
(
dialog
->
remarks
());
if
(
!
dialog
->
remarks
().
isEmpty
())
{
// do not set an empty remark to avoid an empty signature notation (GnuPG bug T5142)
job
->
setRemark
(
dialog
->
remarks
());
}
// This also came with 1.14.0
// This also came with 1.14.0
job
->
setDupeOk
(
true
);
job
->
setDupeOk
(
true
);
#endif
#endif
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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