dirmngr/src (ChangeLog dirmngr.c)
cvs user wk
cvs at cvs.gnupg.org
Mon Dec 13 12:38:56 CET 2004
Date: Monday, December 13, 2004 @ 12:43:06
Author: wk
Path: /cvs/dirmngr/dirmngr/src
Modified: ChangeLog dirmngr.c
Workaround a typo in gpgconf for
ignore-ocsp-servic-url.
-----------+
ChangeLog | 5 +++++
dirmngr.c | 7 +++++++
2 files changed, 12 insertions(+)
Index: dirmngr/src/ChangeLog
diff -u dirmngr/src/ChangeLog:1.33 dirmngr/src/ChangeLog:1.34
--- dirmngr/src/ChangeLog:1.33 Fri Dec 10 16:15:45 2004
+++ dirmngr/src/ChangeLog Mon Dec 13 12:43:05 2004
@@ -1,3 +1,8 @@
+2004-12-13 Werner Koch <wk at g10code.com>
+
+ * dirmngr.c: Workaround a typo in gpgconf for
+ ignore-ocsp-servic-url.
+
2004-12-10 Werner Koch <wk at g10code.com>
* ldap.c (url_fetch_ldap): Use TMP and not a HOST which is always
Index: dirmngr/src/dirmngr.c
diff -u dirmngr/src/dirmngr.c:1.50 dirmngr/src/dirmngr.c:1.51
--- dirmngr/src/dirmngr.c:1.50 Fri Dec 3 15:42:36 2004
+++ dirmngr/src/dirmngr.c Mon Dec 13 12:43:05 2004
@@ -136,6 +136,10 @@
N_("ignore LDAP CRL distribution points")},
{ oIgnoreOCSPSvcUrl, "ignore-ocsp-service-url", 0,
N_("ignore certificate contained OCSP service URLs")},
+ /* Note: The next one is to fix a typo in gpgconf - should be
+ removed eventually. */
+ { oIgnoreOCSPSvcUrl, "ignore-ocsp-servic-url", 0, "@"},
+
{ oHTTPProxy, "http-proxy", 2,
N_("|URL|redirect all HTTP requests to URL")},
{ oLDAPProxy, "ldap-proxy", 2,
@@ -1033,6 +1037,9 @@
printf ("ignore-ldap-dp:%lu:\n", GC_OPT_FLAG_NONE);
printf ("ignore-http-dp:%lu:\n", GC_OPT_FLAG_NONE);
printf ("ignore-ocsp-service-url:%lu:\n", GC_OPT_FLAG_NONE);
+ /* Note: The next one is to fix a typo in gpgconf - should be
+ removed eventually. */
+ printf ("ignore-ocsp-servic-url:%lu:\n", GC_OPT_FLAG_NONE);
}
cleanup ();
return !!rc;
More information about the Gnupg-commits
mailing list