about summary refs log tree commit diff
path: root/sysdeps/mach/hurd/getsid.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/mach/hurd/getsid.c')
-rw-r--r--sysdeps/mach/hurd/getsid.c3
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);