diff options
author | David Shaw <dshaw@jabberwocky.com> | 2002-08-20 14:45:57 +0200 |
---|---|---|
committer | David Shaw <dshaw@jabberwocky.com> | 2002-08-20 14:45:57 +0200 |
commit | fa88fe9aaf3ff884cd7a519168299d74888b2d05 (patch) | |
tree | 45878a1035fb32217cd0ff561190eb0646f96a3f /g10/pkclist.c | |
parent | * gpgkeys_hkp.c (get_key, parse_hkp_index): Bring over latest code from (diff) | |
download | gnupg2-fa88fe9aaf3ff884cd7a519168299d74888b2d05.tar.xz gnupg2-fa88fe9aaf3ff884cd7a519168299d74888b2d05.zip |
* 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.
Diffstat (limited to 'g10/pkclist.c')
-rw-r--r-- | g10/pkclist.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/g10/pkclist.c b/g10/pkclist.c index cf6eca659..3790e38bf 100644 --- a/g10/pkclist.c +++ b/g10/pkclist.c @@ -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 */ |