mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-02 12:01:32 +01:00
gpg: Fix printing of binary notations.
* g10/keylist.c (show_notation): Print binary notation from BDAT. -- GnuPG-bug-id: 5667
This commit is contained in:
parent
4cb44914b5
commit
62f838ea1f
@ -468,6 +468,10 @@ show_notation (PKT_signature * sig, int indent, int mode, int which)
|
||||
write_status_text (STATUS_NOTATION_FLAGS,
|
||||
nd->flags.critical && nd->flags.human? "1 1" :
|
||||
nd->flags.critical? "1 0" : "0 1");
|
||||
if (!nd->flags.human && nd->bdat && nd->blen)
|
||||
write_status_buffer (STATUS_NOTATION_DATA,
|
||||
nd->bdat, nd->blen, 250);
|
||||
else
|
||||
write_status_buffer (STATUS_NOTATION_DATA,
|
||||
nd->value, strlen (nd->value), 50);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user