diff options
author | Werner Koch <[email protected]> | 1998-11-18 19:59:06 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1998-11-18 19:59:06 +0000 |
commit | f9d2bd8cb957c857098dcf90b48f7b62afdbca1b (patch) | |
tree | 972498d252b949db7107a319270d853178c5d531 /g10/g10.c | |
parent | Spanish laguage support (es_ES) (diff) | |
download | gnupg-f9d2bd8cb957c857098dcf90b48f7b62afdbca1b.tar.gz gnupg-f9d2bd8cb957c857098dcf90b48f7b62afdbca1b.zip |
some bug fixes
Diffstat (limited to 'g10/g10.c')
-rw-r--r-- | g10/g10.c | 8 |
1 files changed, 4 insertions, 4 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: |