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

* options.h, g10.c (main), keylist.c (list_keyblock_print): Add

"show-validity" and "show-long-keyid" list-options.

* gpgv.c (get_validity, trust_value_to_string): Stubs.

* g10.c (main): Use SAFE_VERSION instead of VERSION in the
version-specific gpg.conf file so it can be overridden on RISCOS.
This commit is contained in:
David Shaw 2003-06-03 17:47:58 +00:00
parent 0afffb063f
commit 7c9855aaa2
5 changed files with 122 additions and 34 deletions

View file

@ -1260,7 +1260,7 @@ main( int argc, char **argv )
{
/* Try for a version specific config file first */
configname = make_filename(opt.homedir,
"gpg" EXTSEP_S "conf-" VERSION, NULL );
"gpg" EXTSEP_S "conf-" SAFE_VERSION, NULL );
if(access(configname,R_OK))
{
m_free(configname);
@ -1752,6 +1752,8 @@ main( int argc, char **argv )
{"show-policy-url",LIST_SHOW_POLICY},
{"show-notation",LIST_SHOW_NOTATION},
{"show-keyring",LIST_SHOW_KEYRING},
{"show-validity",LIST_SHOW_VALIDITY},
{"show-long-keyid",LIST_SHOW_LONG_KEYID},
{NULL,0}
};