| Summary: | The cert-level dropdown list is not honored when signing a key | ||
|---|---|---|---|
| Product: | [Applications] kgpg | Reporter: | David Ammouial <da> |
| Component: | general | Assignee: | bj |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Debian testing | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
David Ammouial
2007-07-27 00:54:21 UTC
SVN commit 701419 by dakon:
Honor trust level even when signing in terminal
BUG:148241
M +2 -1 kgpginterface.cpp
--- trunk/KDE/kdeutils/kgpg/kgpginterface.cpp #701418:701419
@@ -1722,7 +1722,8 @@
KProcess process;
process << config.readPathEntry("TerminalApplication", "konsole");
- process << "-e" << KGpgSettings::gpgBinaryPath() << "--no-secmem-warning" << "--expert" << "-u" << m_signkey;
+ process << "-e" << KGpgSettings::gpgBinaryPath() << "--no-secmem-warning" << "-u" << m_signkey;
+ process << "--default-cert-level" << QString(m_checking);
if (!m_local)
process << "--sign-key" << m_keyid;
|