Blob Blame History Raw
We don't use the libcurl support, but in case that changes before the next
release, apply it.

diff -u -p -r1.90 -r1.91
--- g10/keyserver.c	22 Jul 2005 16:28:40 -0000	1.90
+++ g10/keyserver.c	27 Jul 2005 01:24:57 -0000	1.91
@@ -860,7 +860,9 @@ curl_can_handle(const char *scheme)
 static const char *
 keyserver_typemap(const char *type)
 {
-  if(strcmp(type,"ldaps")==0)
+  if(strcmp(type,"ldap")==0)
+    return "ldap";
+  else if(strcmp(type,"ldaps")==0)
     return "ldap";
   else if(curl_can_handle(type))
     return "curl";