* 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

@ -1,3 +1,8 @@
2005-03-31 Werner Koch <wk@g10code.com>
* call-dirmngr.c (start_dirmngr): Use PATHSEP_C instead of ':'.
* call-agent.c (start_agent): Ditto.
2005-03-17 Werner Koch <wk@g10code.com>
* certcheck.c: Fixed use of DBG_CRYPTO and DBG_X509.

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)

View File

@ -218,7 +218,7 @@ start_dirmngr (void)
}
*p++ = 0;
pid = atoi (p);
while (*p && *p != ':')
while (*p && *p != PATHSEP_C)
p++;
prot = *p? atoi (p+1) : 0;
if (prot != 1)