aboutsummaryrefslogtreecommitdiffstats
path: root/g10/gpg.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2016-12-12 09:50:21 +0000
committerWerner Koch <[email protected]>2016-12-12 09:50:42 +0000
commitf1304ee9b21e6ceac6c13d04ceddd23fadb5c7f1 (patch)
treeeb51d58eb04e9d27233580fb0fec0c9cf59c8935 /g10/gpg.c
parentgpg: Fix algo string parsing of --quick-addkey. (diff)
downloadgnupg-f1304ee9b21e6ceac6c13d04ceddd23fadb5c7f1.tar.gz
gnupg-f1304ee9b21e6ceac6c13d04ceddd23fadb5c7f1.zip
gpg: Do not use a fixed string for --gpgconf-list:default_pubkey_algo.
* g10/keygen.c (get_default_pubkey_algo): New. (parse_key_parameter_string): Use it. * g10/gpg.c (gpgconf_list): Take value from new function. -- Note that consumers of that gpgconf-list value may need to be adjusted to that new value. It should anyway only be used to display the default algorithm. Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'g10/gpg.c')
-rw-r--r--g10/gpg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/gpg.c b/g10/gpg.c
index ddb7715e1..c0873877e 100644
--- a/g10/gpg.c
+++ b/g10/gpg.c
@@ -1832,7 +1832,7 @@ gpgconf_list (const char *configfile)
/* The next one is an info only item and should match the macros at
the top of keygen.c */
es_printf ("default_pubkey_algo:%lu:\"%s:\n", GC_OPT_FLAG_DEFAULT,
- "RSA-2048");
+ get_default_pubkey_algo ());
xfree (configfile_esc);
}