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

* keylist.c, keyedit.c, keyserver.c, sign.c: Some TODOs and comments.

* export.c (do_export_stream): Fix noop bug in exporting sensitive
revocation keys.

* pkclist.c (do_edit_ownertrust): Comment out the option for showing trust
paths until it can be implemented.
This commit is contained in:
David Shaw 2002-08-20 12:45:57 +00:00
parent 0d8006450a
commit fa88fe9aaf
7 changed files with 39 additions and 4 deletions

View file

@ -276,7 +276,10 @@ do_edit_ownertrust (PKT_public_key *pk, int mode,
tty_printf (_(" %d = I trust fully\n"), 4);
if (mode)
tty_printf (_(" %d = I trust ultimately\n"), 5);
#if 0
/* not yet implemented */
tty_printf (_(" i = please show me more information\n") );
#endif
if( mode )
tty_printf(_(" m = back to the main menu\n"));
else
@ -320,12 +323,15 @@ do_edit_ownertrust (PKT_public_key *pk, int mode,
break;
}
}
#if 0
/* not yet implemented */
else if( *p == ans[0] || *p == ans[1] )
{
tty_printf(_("Certificates leading to an ultimately trusted key:\n"));
show = 1;
break;
}
#endif
else if( mode && (*p == ans[2] || *p == ans[3] || *p == CONTROL_D ) )
{
break ; /* back to the menu */