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

A couple of fixes. gpg2's key generation does now work.

This commit is contained in:
Werner Koch 2006-06-30 09:42:08 +00:00
parent 6c4ae71b5d
commit 6c208fea32
12 changed files with 62 additions and 35 deletions

View file

@ -76,7 +76,7 @@ do_show_revocation_reason( PKT_signature *sig )
fputs( text, log_get_stream() );
else
fprintf( log_get_stream(), "code=%02x", *p );
putc( '\n', log_get_stream() );
log_printf ("\n");
n--; p++;
pp = NULL;
do {
@ -88,9 +88,9 @@ do_show_revocation_reason( PKT_signature *sig )
if( n ) {
pp = memchr( p, '\n', n );
nn = pp? pp - p : n;
log_info( _("revocation comment: ") );
print_string( log_get_stream(), p, nn, 0 );
putc( '\n', log_get_stream() );
log_info ( _("revocation comment: ") );
print_string ( log_get_stream(), p, nn, 0 );
log_printf ("\n");
p += nn; n -= nn;
}
} while( pp );