aboutsummaryrefslogtreecommitdiffstats
path: root/g10/keyserver.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2003-12-28 03:46:43 +0000
committerDavid Shaw <[email protected]>2003-12-28 03:46:43 +0000
commit392e6da660d4deb1da06bfdeb569071e432eec33 (patch)
tree4318d912de49365612d60122a2b99535cb3d3cdc /g10/keyserver.c
parent* build-packet.c (write_fake_data, do_secret_key), seckey-cert.c (diff)
downloadgnupg-392e6da660d4deb1da06bfdeb569071e432eec33.tar.gz
gnupg-392e6da660d4deb1da06bfdeb569071e432eec33.zip
* 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.
Diffstat (limited to 'g10/keyserver.c')
-rw-r--r--g10/keyserver.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/g10/keyserver.c b/g10/keyserver.c
index 7ec744c66..279a4e37e 100644
--- a/g10/keyserver.c
+++ b/g10/keyserver.c
@@ -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);
}
}