mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-09 12:54:23 +01:00
* keyserver.c (parse_keyserver_uri): If there is a path present, set the
direct_uri flag so the right keyserver helper is run.
This commit is contained in:
parent
4ff7d09040
commit
214a3a646e
@ -1,3 +1,8 @@
|
|||||||
|
2006-01-24 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* keyserver.c (parse_keyserver_uri): If there is a path present,
|
||||||
|
set the direct_uri flag so the right keyserver helper is run.
|
||||||
|
|
||||||
2006-01-22 David Shaw <dshaw@jabberwocky.com>
|
2006-01-22 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* keyserver.c (keyserver_spawn): Include the EXEEXT so we can find
|
* keyserver.c (keyserver_spawn): Include the EXEEXT so we can find
|
||||||
|
@ -362,6 +362,9 @@ parse_keyserver_uri(const char *uri,int require_scheme,
|
|||||||
keyserver->path=xstrdup(uri);
|
keyserver->path=xstrdup(uri);
|
||||||
else
|
else
|
||||||
keyserver->path=xstrdup("/");
|
keyserver->path=xstrdup("/");
|
||||||
|
|
||||||
|
if(keyserver->path[1]!='\0')
|
||||||
|
keyserver->flags.direct_uri=1;
|
||||||
}
|
}
|
||||||
else if(uri[0]!='/')
|
else if(uri[0]!='/')
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user