aboutsummaryrefslogtreecommitdiffstats
path: root/g10/keyid.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2005-12-19 01:51:31 +0000
committerDavid Shaw <[email protected]>2005-12-19 01:51:31 +0000
commitaebd3a04f30652aea221b4d1481fae3e62a40f7e (patch)
tree7b47484cf8d9064330e09413802bd6c2be0ac6f8 /g10/keyid.c
parent* gpg.c (main): Don't default to import-options convert-sk-to-pk. It (diff)
downloadgnupg-aebd3a04f30652aea221b4d1481fae3e62a40f7e.tar.gz
gnupg-aebd3a04f30652aea221b4d1481fae3e62a40f7e.zip
* gpg.c (main): Restore convert-sk-to-pk as programs rely on it.
* keyid.c (usagestr_from_pk): Remove special PUBKEY_USAGE_CERT flag. It's no longer needed.
Diffstat (limited to 'g10/keyid.c')
-rw-r--r--g10/keyid.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/g10/keyid.c b/g10/keyid.c
index 7c2bd3ba4..86a204ff3 100644
--- a/g10/keyid.c
+++ b/g10/keyid.c
@@ -543,13 +543,9 @@ usagestr_from_pk( PKT_public_key *pk )
static char buffer[10];
int i = 0;
unsigned int use = pk->pubkey_usage;
-
+
if ( use & PUBKEY_USAGE_SIG )
- {
- if (pk->is_primary)
- use|=PUBKEY_USAGE_CERT;
- buffer[i++] = 'S';
- }
+ buffer[i++] = 'S';
if ( use & PUBKEY_USAGE_CERT )
buffer[i++] = 'C';