diff options
author | David Shaw <[email protected]> | 2006-03-09 01:15:18 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2006-03-09 01:15:18 +0000 |
commit | 0f7b4371b2d19108668f4a3a055ac62c831cc3d3 (patch) | |
tree | 4804b7196d65a0261a39a0a7e77514ca918c6f0d /g10/packet.h | |
parent | * packet.h, build-packet.c (sig_to_notation), keygen.c (diff) | |
download | gnupg-0f7b4371b2d19108668f4a3a055ac62c831cc3d3.tar.gz gnupg-0f7b4371b2d19108668f4a3a055ac62c831cc3d3.zip |
* packet.h, build-packet.c (sig_to_notation), keygen.c
(keygen_add_notations): Provide printable text for non-human-readable
notation values.
Diffstat (limited to '')
-rw-r--r-- | g10/packet.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/packet.h b/g10/packet.h index 7e0f9d0ac..f3181332f 100644 --- a/g10/packet.h +++ b/g10/packet.h @@ -411,12 +411,12 @@ struct notation { char *name; char *value; - size_t blen; char *altvalue; + unsigned char *bdat; + size_t blen; struct { unsigned int critical:1; - unsigned int human:1; unsigned int ignore:1; } flags; struct notation *next; |