diff options
author | Roland McGrath <roland@gnu.org> | 1995-12-23 01:14:10 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-12-23 01:14:10 +0000 |
commit | 2114e10acb7494eddd5417c27cd52199f4fe9517 (patch) | |
tree | 30543b37265562f35608e99bb7c4a312c19c919c /sysdeps/mach/hurd/setgid.c | |
parent | 975320984b9f9fa6742136447ec82e7e304d83fd (diff) | |
download | glibc-2114e10acb7494eddd5417c27cd52199f4fe9517.tar.gz glibc-2114e10acb7494eddd5417c27cd52199f4fe9517.tar.xz glibc-2114e10acb7494eddd5417c27cd52199f4fe9517.zip |
Fri Dec 22 00:38:00 1995 H.J. Lu <hjl@nynexst.com>
* stdio-common/vfscanf.c: Correctly handle white space skipping. * stdio-common/Makefile (tests): Add bug11. * stdio-common/bug11.c: New file. Fri Dec 22 00:38:00 1995 H.J. Lu <hjl@nynexst.com> * stdio-common/vfscanf.c: Correctly handle white space skipping. * stdio-common/Makefile (tests): Add bug11. * stdio-common/bug11.c: New file.
Diffstat (limited to 'sysdeps/mach/hurd/setgid.c')
-rw-r--r-- | sysdeps/mach/hurd/setgid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/setgid.c b/sysdeps/mach/hurd/setgid.c index 660a3fe5d0..b2d9313307 100644 --- a/sysdeps/mach/hurd/setgid.c +++ b/sysdeps/mach/hurd/setgid.c @@ -66,7 +66,7 @@ DEFUN(__setgid, (gid), gid_t gid) newaux = auxbuf; naux = 2; } - _hurd_id.aux.gids[0] = _hurd_id.aux.gids[1] = gid; + newaux[0] = newaux[1] = gid; } else { |