Summary: | shows fingerprint of last subkey if "fingerprint" is in gpg.conf | ||
---|---|---|---|
Product: | [Applications] kgpg | Reporter: | Adeodato Simó <dato> |
Component: | general | Assignee: | bj |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 1.2 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Adeodato Simó
2004-08-30 00:48:13 UTC
CVS commit by mardelle: Display correct fingerprint if "fingerprint" is in gpg.conf CCMAIL: 88414-done@bugs.kde.org M +2 -2 keyinfowidget.cpp 1.20 --- kdeutils/kgpg/keyinfowidget.cpp #1.19:1.20 @@ -108,5 +108,5 @@ void KgpgKeyInfo::loadKey(QString Keyid) { QColor trustColor; -QString fingervalue; +QString fingervalue=QString::null; FILE *pass; char line[200]=""; @@ -269,5 +269,5 @@ QString gpgcmd="gpg --no-tty --no-secmem } - if (gpgOutput.startsWith("fpr")) { + if (gpgOutput.startsWith("fpr") && (fingervalue==QString::null)) { fingervalue=gpgOutput.section(':',9,9); // format fingervalue in 4-digit groups |