summaryrefslogtreecommitdiff
path: root/dbus/dbus-transport.c
diff options
context:
space:
mode:
authorRalf Habacker <ralf.habacker@freenet.de>2013-03-08 13:15:36 +0100
committerRalf Habacker <ralf.habacker@freenet.de>2013-03-08 23:29:22 +0100
commit15b2d2bb258483c191efb51ee6366c26318fd9f9 (patch)
tree5bc7076a9c48f5ee3cea23fe6250d787c721cc6f /dbus/dbus-transport.c
parent73df9770b39ad486c6ed4d5a392d950c6eb065f5 (diff)
downloaddbus-15b2d2bb258483c191efb51ee6366c26318fd9f9.tar.gz
Rename the term 'unix_pid' to 'pid' in variables and functions.
Windows also has numeric process IDs that fit in an unsigned long, so there's no reason this has to be Unix-specific. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=61787 Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Diffstat (limited to 'dbus/dbus-transport.c')
-rw-r--r--dbus/dbus-transport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbus/dbus-transport.c b/dbus/dbus-transport.c
index 6b58fda2..c483d764 100644
--- a/dbus/dbus-transport.c
+++ b/dbus/dbus-transport.c
@@ -1337,7 +1337,7 @@ _dbus_transport_get_unix_process_id (DBusTransport *transport,
if (_dbus_credentials_include (auth_identity,
DBUS_CREDENTIAL_UNIX_PROCESS_ID))
{
- *pid = _dbus_credentials_get_unix_pid (auth_identity);
+ *pid = _dbus_credentials_get_pid (auth_identity);
return TRUE;
}
else