mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-08 12:44:23 +01:00
* keyserver.c (keyserver_typemap): Only map HTTP and FTP if libcurl has
specifically been selected to handle them.
This commit is contained in:
parent
d341143cd7
commit
783ec6dbb2
@ -1,3 +1,8 @@
|
||||
2004-12-24 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* keyserver.c (keyserver_typemap): Only map HTTP and FTP if
|
||||
libcurl has specifically been selected to handle them.
|
||||
|
||||
2004-12-22 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* options.h, keyserver.c (parse_keyserver_uri): Properly parse
|
||||
|
@ -784,12 +784,14 @@ keyserver_typemap(const char *type)
|
||||
{
|
||||
if(strcmp(type,"ldaps")==0)
|
||||
return "ldap";
|
||||
#ifdef HAVE_LIBCURL
|
||||
#ifdef FTP_VIA_LIBCURL
|
||||
else if(strcmp(type,"ftp")==0)
|
||||
return "curl";
|
||||
#endif
|
||||
#ifdef HTTP_VIA_LIBCURL
|
||||
else if(strcmp(type,"http")==0)
|
||||
return "curl";
|
||||
#endif /* HAVE_LIBCURL */
|
||||
#endif
|
||||
else
|
||||
return type;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user