mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-03 12:11:33 +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>
|
2005-03-17 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
* certcheck.c: Fixed use of DBG_CRYPTO and DBG_X509.
|
* certcheck.c: Fixed use of DBG_CRYPTO and DBG_X509.
|
||||||
|
@ -144,7 +144,7 @@ start_agent (ctrl_t ctrl)
|
|||||||
}
|
}
|
||||||
*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)
|
||||||
|
@ -218,7 +218,7 @@ start_dirmngr (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