aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2004-03-17 13:01:16 +0000
committerWerner Koch <[email protected]>2004-03-17 13:01:16 +0000
commitd714e81e58f835f7a85e04049d19981ceeb426fc (patch)
treeddaabe2635223a92fdbac43ebc0af9db96632468
parent(gc_options_gpg_agent): Implemented. (diff)
downloadgnupg-d714e81e58f835f7a85e04049d19981ceeb426fc.tar.gz
gnupg-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.
-rw-r--r--agent/ChangeLog4
-rw-r--r--agent/gpg-agent.c2
-rw-r--r--scd/ChangeLog4
-rw-r--r--scd/scdaemon.c4
-rw-r--r--sm/ChangeLog4
-rw-r--r--sm/gpgsm.c4
6 files changed, 17 insertions, 5 deletions
diff --git a/agent/ChangeLog b/agent/ChangeLog
index 7516cddb8..484a5ffd7 100644
--- a/agent/ChangeLog
+++ b/agent/ChangeLog
@@ -1,3 +1,7 @@
+2004-03-17 Werner Koch <[email protected]>
+
+ * gpg-agent.c (main) <gpgconf>: Fixed default value quoting.
+
2004-03-16 Werner Koch <[email protected]>
* gpg-agent.c (parse_rereadable_options): Use the new
diff --git a/agent/gpg-agent.c b/agent/gpg-agent.c
index 12bdb85ea..2051d9080 100644
--- a/agent/gpg-agent.c
+++ b/agent/gpg-agent.c
@@ -612,7 +612,7 @@ main (int argc, char **argv )
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_RUNTIME,
GC_OPT_FLAG_NONE|GC_OPT_FLAG_RUNTIME,
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 <[email protected]>
+
+ * scdaemon.c (main) <gpgconf>: Fixed default value quoting.
+
2004-03-16 Werner Koch <[email protected]>
* 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,
diff --git a/sm/ChangeLog b/sm/ChangeLog
index 210448643..08793b810 100644
--- a/sm/ChangeLog
+++ b/sm/ChangeLog
@@ -1,3 +1,7 @@
+2004-03-17 Werner Koch <[email protected]>
+
+ * gpgsm.c (main) <gpgconf>: Fixed default value quoting.
+
2004-03-16 Werner Koch <[email protected]>
* gpgsm.c (main): Implemented --gpgconf-list.
diff --git a/sm/gpgsm.c b/sm/gpgsm.c
index 6b8a2ea49..761aefcee 100644
--- a/sm/gpgsm.c
+++ b/sm/gpgsm.c
@@ -1279,13 +1279,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-gpgsm.conf:%lu:\"%s\"\n",
+ printf ("gpgconf-gpgsm.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,