mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
* call-dirmngr.c (start_dirmngr): Use PATHSEP_C instead of ':'.
* call-agent.c (start_agent): Ditto.
This commit is contained in:
parent
6b002f0602
commit
5a6edf162b
@ -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.
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user