aboutsummaryrefslogtreecommitdiffstats
path: root/g10/parse-packet.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2004-07-15 21:00:35 +0000
committerDavid Shaw <[email protected]>2004-07-15 21:00:35 +0000
commit2cba999f22c05e0f85339b5abeadb1bb86866766 (patch)
treeae7c1d987e715656f05ff234def597aa0c50fdc3 /g10/parse-packet.c
parent* ring-a-party: ElGamal -> Elgamal (diff)
downloadgnupg-2cba999f22c05e0f85339b5abeadb1bb86866766.tar.gz
gnupg-2cba999f22c05e0f85339b5abeadb1bb86866766.zip
* g10.c (main): Alias --charset as --display-charset to help avoid the
continuing confusion and make room for possible changes in devel. * parse-packet.c (parse_plaintext): Show the hex value for the literal packet mode since it may not be printable. * keygen.c (make_backsig): Make sure that the backsig was built successfully before we try and use it. * status.h, status.c (get_status_string), plaintext.c (handle_plaintext): New status tags PLAINTEXT and PLAINTEXT_LENGTH.
Diffstat (limited to '')
-rw-r--r--g10/parse-packet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/parse-packet.c b/g10/parse-packet.c
index 56a717725..8b3744af1 100644
--- a/g10/parse-packet.c
+++ b/g10/parse-packet.c
@@ -2155,8 +2155,8 @@ parse_plaintext( IOBUF inp, int pkttype, unsigned long pktlen,
if( list_mode ) {
printf(":literal data packet:\n"
- "\tmode %c, created %lu, name=\"",
- mode >= ' ' && mode <'z'? mode : '?',
+ "\tmode %c (%X), created %lu, name=\"",
+ mode >= ' ' && mode <'z'? mode : '?', mode,
(ulong)pt->timestamp );
for(p=pt->name,i=0; i < namelen; p++, i++ ) {
if( *p >= ' ' && *p <= 'z' )