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

* main.h, misc.c (parse_options): Add a "noisy" flag to enable and disable

the messages about which option didn't match or matched ambiguously.
Change all callers (g10.c, keyserver.c).

* main.h, import.c (import_options), export.c (export_options): Pass the
noisy flag through.
This commit is contained in:
David Shaw 2003-12-28 03:46:43 +00:00
parent 7847eae02c
commit 392e6da660
7 changed files with 35 additions and 20 deletions

View file

@ -1,5 +1,5 @@
/* keyserver.c - generic keyserver code
* Copyright (C) 2001, 2002 Free Software Foundation, Inc.
* Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*
@ -123,9 +123,10 @@ parse_keyserver_options(char *options)
#endif
else
if(!parse_import_options(tok,
&opt.keyserver_options.import_options) &&
&opt.keyserver_options.import_options,0)
&&
!parse_export_options(tok,
&opt.keyserver_options.export_options))
&opt.keyserver_options.export_options,0))
add_to_strlist(&opt.keyserver_options.other,tok);
}
}