mirror of
git://git.gnupg.org/gnupg.git
synced 2025-03-24 22:09:57 +01:00
* 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.
This commit is contained in:
parent
26eeebf512
commit
aebd3a04f3
@ -1,3 +1,10 @@
|
||||
2005-12-18 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* 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.
|
||||
|
||||
2005-12-14 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* gpg.c (main): Don't default to import-options convert-sk-to-pk.
|
||||
|
@ -1693,6 +1693,7 @@ main (int argc, char **argv )
|
||||
opt.pgp2_workarounds = 1;
|
||||
opt.force_v3_sigs = 1;
|
||||
opt.escape_from = 1;
|
||||
opt.import_options=IMPORT_SK2PK;
|
||||
opt.export_options=EXPORT_ATTRIBUTES;
|
||||
opt.keyserver_options.import_options=IMPORT_REPAIR_PKS_SUBKEY_BUG;
|
||||
opt.keyserver_options.export_options=EXPORT_ATTRIBUTES;
|
||||
|
@ -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';
|
||||
|
Loading…
x
Reference in New Issue
Block a user