diff options
author | Werner Koch <wk@gnupg.org> | 2004-03-17 14:01:16 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2004-03-17 14:01:16 +0100 |
commit | d714e81e58f835f7a85e04049d19981ceeb426fc (patch) | |
tree | ddaabe2635223a92fdbac43ebc0af9db96632468 /scd | |
parent | (gc_options_gpg_agent): Implemented. (diff) | |
download | gnupg2-d714e81e58f835f7a85e04049d19981ceeb426fc.tar.xz gnupg2-d714e81e58f835f7a85e04049d19981ceeb426fc.zip |
* gpg-agent.c (main) <gpgconf>: Fixed default value quoting.
* scdaemon.c (main) <gpgconf>: Fixed default value quoting.
* gpgsm.c (main) <gpgconf>: Fixed default value quoting.
Diffstat (limited to 'scd')
-rw-r--r-- | scd/ChangeLog | 4 | ||||
-rw-r--r-- | scd/scdaemon.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/scd/ChangeLog b/scd/ChangeLog index 679f867fe..9b2ddf79c 100644 --- a/scd/ChangeLog +++ b/scd/ChangeLog @@ -1,3 +1,7 @@ +2004-03-17 Werner Koch <wk@gnupg.org> + + * scdaemon.c (main) <gpgconf>: Fixed default value quoting. + 2004-03-16 Werner Koch <wk@gnupg.org> * app-dinsig.c: Implemented. Based on app-nks.c and card-dinsig.c diff --git a/scd/scdaemon.c b/scd/scdaemon.c index 93746ec35..9f1e409e4 100644 --- a/scd/scdaemon.c +++ b/scd/scdaemon.c @@ -530,13 +530,13 @@ main (int argc, char **argv ) a default, which is described by the value of the ARGDEF field. */ #define GC_OPT_FLAG_NO_ARG_DESC (1UL << 6) - printf ("gpgconf-scdaemon.conf:%lu:\"%s\"\n", + printf ("gpgconf-scdaemon.conf:%lu:\"%s\n", GC_OPT_FLAG_DEFAULT, config_filename?config_filename:"/dev/null"); printf ("verbose:%lu:\n" "quiet:%lu:\n" - "debug-level:%lu:\"none\":\n" + "debug-level:%lu:\"none:\n" "log-file:%lu:\n", GC_OPT_FLAG_NONE, GC_OPT_FLAG_NONE, |