diff options
author | David Shaw <[email protected]> | 2006-03-08 23:42:45 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2006-03-08 23:42:45 +0000 |
commit | 889c4afd78cad05978209cc8ee70df63fc419d1c (patch) | |
tree | faf166a6055032581a0a3019ddfd762e5b6f33a4 /g10/packet.h | |
parent | * options.h, sign.c (mk_notation_policy_etc), gpg.c (add_notation_data): (diff) | |
download | gnupg-889c4afd78cad05978209cc8ee70df63fc419d1c.tar.gz gnupg-889c4afd78cad05978209cc8ee70df63fc419d1c.zip |
* packet.h, build-packet.c (sig_to_notation), keygen.c
(keygen_add_notations): Tweak to handle non-human-readable notation
values.
Diffstat (limited to 'g10/packet.h')
-rw-r--r-- | g10/packet.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/g10/packet.h b/g10/packet.h index c40f2f123..7e0f9d0ac 100644 --- a/g10/packet.h +++ b/g10/packet.h @@ -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; |