mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-10 21:38:50 +01:00
doc: Explain why we use D-Lines for keyboxd communication.
--
This commit is contained in:
parent
cb739bb2a5
commit
1ea66b6df3
@ -223,7 +223,9 @@ open_context (ctrl_t ctrl, keyboxd_local_t *r_kbl)
|
|||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
err = kbx_client_data_new (&kbl->kcd, kbl->ctx, 1);
|
/* We use D-lines in 2.4 for communication due to a bug with fd
|
||||||
|
* passing. See T6512. */
|
||||||
|
err = kbx_client_data_new (&kbl->kcd, kbl->ctx, 1 /*=use D-lines*/);
|
||||||
if (err)
|
if (err)
|
||||||
{
|
{
|
||||||
assuan_release (kbl->ctx);
|
assuan_release (kbl->ctx);
|
||||||
|
@ -580,6 +580,8 @@ open_context (ctrl_t ctrl, keydb_local_t *r_kbl)
|
|||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* We use D-lines in 2.4 for communication due to a bug with fd
|
||||||
|
* passing. See T6512. */
|
||||||
err = kbx_client_data_new (&kbl->kcd, kbl->ctx, 1);
|
err = kbx_client_data_new (&kbl->kcd, kbl->ctx, 1);
|
||||||
if (err)
|
if (err)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user