mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-03 12:11:33 +01:00
* gpg-connect-agent.c (start_agent): Use PATHSEP_C instead of ':'.
This commit is contained in:
parent
5a6edf162b
commit
3441826da7
@ -6,6 +6,10 @@
|
|||||||
(symcryptrun_SOURCES, symcryptrun_LDADD): New variables.
|
(symcryptrun_SOURCES, symcryptrun_LDADD): New variables.
|
||||||
* symcryptrun.c: New file.
|
* symcryptrun.c: New file.
|
||||||
|
|
||||||
|
2005-03-31 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
|
* gpg-connect-agent.c (start_agent): Use PATHSEP_C instead of ':'.
|
||||||
|
|
||||||
2005-03-09 Werner Koch <wk@g10code.com>
|
2005-03-09 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
* gpgconf-comp.c <dirmngr>: Add honor-http-proxy.
|
* gpgconf-comp.c <dirmngr>: Add honor-http-proxy.
|
||||||
|
@ -325,7 +325,7 @@ read_and_print_response (assuan_context_t ctx)
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Connect to teh agebnt and send the standard options. */
|
/* Connect to the agent and send the standard options. */
|
||||||
static assuan_context_t
|
static assuan_context_t
|
||||||
start_agent (void)
|
start_agent (void)
|
||||||
{
|
{
|
||||||
@ -357,7 +357,7 @@ start_agent (void)
|
|||||||
}
|
}
|
||||||
*p++ = 0;
|
*p++ = 0;
|
||||||
pid = atoi (p);
|
pid = atoi (p);
|
||||||
while (*p && *p != ':')
|
while (*p && *p != PATHSEP_C)
|
||||||
p++;
|
p++;
|
||||||
prot = *p? atoi (p+1) : 0;
|
prot = *p? atoi (p+1) : 0;
|
||||||
if (prot != 1)
|
if (prot != 1)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user