diff options
author | Roland McGrath <roland@gnu.org> | 2006-02-21 02:33:00 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2006-02-21 02:33:00 +0000 |
commit | 7aaa17343dc759012322ac3e23b1aaad9afa81f7 (patch) | |
tree | 2fd3f6b6ca69f371d78b28747c2d1e67b94ff330 /sysdeps/mach/hurd/getsid.c | |
parent | 0d5cb2c74f3df8253834274843b4eb8cdc5dd651 (diff) | |
download | glibc-7aaa17343dc759012322ac3e23b1aaad9afa81f7.tar.gz glibc-7aaa17343dc759012322ac3e23b1aaad9afa81f7.tar.xz glibc-7aaa17343dc759012322ac3e23b1aaad9afa81f7.zip |
[BZ #2178]
2006-01-18 Samuel Thibault <samuel.thibault@ens-lyon.org> [BZ #2178] * sysdeps/mach/hurd/getsid.c (getsid): When parameter PID is zero, use _hurd_pid instead.
Diffstat (limited to 'sysdeps/mach/hurd/getsid.c')
-rw-r--r-- | sysdeps/mach/hurd/getsid.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sysdeps/mach/hurd/getsid.c b/sysdeps/mach/hurd/getsid.c index 57c10c58b7..9dcfa90fde 100644 --- a/sysdeps/mach/hurd/getsid.c +++ b/sysdeps/mach/hurd/getsid.c @@ -28,6 +28,9 @@ getsid (pid_t pid) error_t err; pid_t sid; + if (pid == 0) + pid = _hurd_pid; + err = __USEPORT (PROC, __proc_getsid (port, pid, &sid)); if (err) return (pid_t) __hurd_fail (err); |