From 2114e10acb7494eddd5417c27cd52199f4fe9517 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sat, 23 Dec 1995 01:14:10 +0000 Subject: Fri Dec 22 00:38:00 1995 H.J. Lu * 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 * stdio-common/vfscanf.c: Correctly handle white space skipping. * stdio-common/Makefile (tests): Add bug11. * stdio-common/bug11.c: New file. --- sysdeps/mach/hurd/setgid.c | 2 +- sysdeps/mach/hurd/setuid.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'sysdeps/mach') 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 { diff --git a/sysdeps/mach/hurd/setuid.c b/sysdeps/mach/hurd/setuid.c index 586ad2154f..c2491d6d13 100644 --- a/sysdeps/mach/hurd/setuid.c +++ b/sysdeps/mach/hurd/setuid.c @@ -66,7 +66,7 @@ DEFUN(__setuid, (uid), uid_t uid) newaux = auxbuf; naux = 2; } - _hurd_id.aux.uids[0] = _hurd_id.aux.uids[1] = uid; + newaux[0] = newaux[1] = uid; } else { -- cgit v1.2.3