1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-09-21 15:01:41 +02: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:
David Shaw 2006-01-24 21:03:06 +00:00
parent 4ff7d09040
commit 214a3a646e
2 changed files with 8 additions and 0 deletions

View File

@ -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>
* keyserver.c (keyserver_spawn): Include the EXEEXT so we can find

View File

@ -362,6 +362,9 @@ parse_keyserver_uri(const char *uri,int require_scheme,
keyserver->path=xstrdup(uri);
else
keyserver->path=xstrdup("/");
if(keyserver->path[1]!='\0')
keyserver->flags.direct_uri=1;
}
else if(uri[0]!='/')
{