mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-14 21:47:19 +02:00
some bug fixes
This commit is contained in:
parent
4cad562da9
commit
f9d2bd8cb9
14 changed files with 441 additions and 225 deletions
|
@ -268,7 +268,6 @@ static ARGPARSE_OPTS opts[] = {
|
|||
#endif
|
||||
#ifdef IS_G10
|
||||
{ oKOption, NULL, 0, "@"},
|
||||
{ aEditKey, "edit-sig" ,0, "@"}, /* alias for edit-key */
|
||||
{ oPasswdFD, "passphrase-fd",1, "@" },
|
||||
{ aSignKey, "sign-key" ,256, "@" }, /* alias for edit-key */
|
||||
#endif
|
||||
|
@ -1217,9 +1216,10 @@ main( int argc, char **argv )
|
|||
break;
|
||||
|
||||
case aListTrustPath:
|
||||
if( argc != 2 )
|
||||
wrong_args("--list-trust-path [-- -]<maxdepth> <username>");
|
||||
list_trust_path( atoi(*argv), argv[1] );
|
||||
if( !argc )
|
||||
wrong_args("--list-trust-path <usernames>");
|
||||
for( ; argc; argc--, argv++ )
|
||||
list_trust_path( *argv );
|
||||
break;
|
||||
|
||||
case aExportOwnerTrust:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue