1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* packet.h, build-packet.c (sig_to_notation), keygen.c

(keygen_add_notations): Tweak to handle non-human-readable notation
values.
This commit is contained in:
David Shaw 2006-03-08 23:42:45 +00:00
parent 4fea8fdbbb
commit 889c4afd78
4 changed files with 15 additions and 6 deletions

View file

@ -411,10 +411,12 @@ struct notation
{
char *name;
char *value;
size_t blen;
char *altvalue;
struct
{
unsigned int critical:1;
unsigned int human:1;
unsigned int ignore:1;
} flags;
struct notation *next;