summaryrefslogtreecommitdiff
path: root/dbus/dbus-spawn.c
diff options
context:
space:
mode:
authorRalf Habacker <ralf.habacker@freenet.de>2015-03-06 08:09:57 +0100
committerRalf Habacker <ralf.habacker@freenet.de>2015-03-24 08:13:36 +0100
commit73af0d5d5c953d157e89f6c02d61872a0c490edf (patch)
treeadfea0bfc3c58efb636e35e053e957a3f43df09e /dbus/dbus-spawn.c
parent21c41b3eb0efb13a118d614336fc41a453d83bfe (diff)
downloaddbus-73af0d5d5c953d157e89f6c02d61872a0c490edf.tar.gz
Rename _dbus_full_duplex_pipe() to more descriptive name _dbus_socketpair().
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=89444 Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Diffstat (limited to 'dbus/dbus-spawn.c')
-rw-r--r--dbus/dbus-spawn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbus/dbus-spawn.c b/dbus/dbus-spawn.c
index 959c1844..86161e9c 100644
--- a/dbus/dbus-spawn.c
+++ b/dbus/dbus-spawn.c
@@ -1258,7 +1258,7 @@ _dbus_spawn_async_with_babysitter (DBusBabysitter **sitter_p,
if (!make_pipe (child_err_report_pipe, error))
goto cleanup_and_fail;
- if (!_dbus_full_duplex_pipe (&babysitter_pipe[0], &babysitter_pipe[1], TRUE, error))
+ if (!_dbus_socketpair (&babysitter_pipe[0], &babysitter_pipe[1], TRUE, error))
goto cleanup_and_fail;
/* Setting up the babysitter is only useful in the parent,