From: Roland McGrath Date: Thu, 26 Jan 1995 01:24:28 +0000 (+0000) Subject: Use subcall 5 to __pgrpsys. X-Git-Tag: glibc-2.16-ports-before-merge~3976 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a38d08f7b4434cbc87eccb1ba8792d0732099b8a;p=thirdparty%2Fglibc.git Use subcall 5 to __pgrpsys. --- diff --git a/sysdeps/unix/sysv/sysv4/setpgid.c b/sysdeps/unix/sysv/sysv4/setpgid.c index 0a1849272da..b9e06dc7199 100644 --- a/sysdeps/unix/sysv/sysv4/setpgid.c +++ b/sysdeps/unix/sysv/sysv4/setpgid.c @@ -28,7 +28,7 @@ extern int __pgrpsys __P ((int type, ...)); int DEFUN(__setpgid, (pid, pgid), int pid AND int pgid) { - return __pgrpsys (1, pid, pgid); + return __pgrpsys (5, pid, pgid); } weak_alias (__setpgid, setpgid)