1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* call-dirmngr.c (start_dirmngr): Use PATHSEP_C instead of ':'.

* call-agent.c (start_agent): Ditto.
This commit is contained in:
Werner Koch 2005-04-11 16:21:05 +00:00
parent 6b002f0602
commit 5a6edf162b
3 changed files with 7 additions and 2 deletions

View file

@ -144,7 +144,7 @@ start_agent (ctrl_t ctrl)
}
*p++ = 0;
pid = atoi (p);
while (*p && *p != ':')
while (*p && *p != PATHSEP_C)
p++;
prot = *p? atoi (p+1) : 0;
if (prot != 1)