mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
* keyedit.c (show_key_with_all_names_colon): The 0x40 class bit in a
designated revoker means "sensitive", not "local". It's exportable under the right circumstances. * main.h, options.h, export.c (do_export_stream), g10.c (main), hkp.c (hkp_export), keyserver.c (keyserver_spawn: Add a flag to skip attribute packets and their signatures while exporting. This is to accomodate keyservers (pksd again) that choke on attributes. Use keyserver-option "include-attributes" to control it. This defaults to ON (i.e. don't skip).
This commit is contained in:
parent
2921721841
commit
75ad30031f
8 changed files with 61 additions and 20 deletions
|
@ -1612,8 +1612,8 @@ show_key_with_all_names_colon (KBNODE keyblock)
|
|||
p = pk->revkey[i].fpr;
|
||||
for (j=0; j < 20; j++, p++ )
|
||||
printf ("%02X", *p);
|
||||
printf (":%02x%c:\n", pk->revkey[i].class,
|
||||
(pk->revkey[i].class&0x40)? 'l':'x');
|
||||
printf (":%02x%s:\n", pk->revkey[i].class,
|
||||
(pk->revkey[i].class&0x40)?"s":"");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue