* sysdeps/unix/sysv/linux/i386/getgroups.c: Fix missing brace
	error in last change.
	* sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.
This commit is contained in:
Ulrich Drepper 2000-01-17 06:30:53 +00:00
parent 098aba9a5f
commit ebf282c9cf
3 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,9 @@
2000-01-16 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/i386/getgroups.c: Fix missing brace
error in last change.
* sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.
* stdlib/longlong.h: Fix typo in last patch.
2000-01-12 Andreas Jaeger <aj@suse.de>

View File

@ -76,8 +76,8 @@ __getgroups (int n, gid_t *groups)
groups[i] = kernel_groups[i];
return ngids;
}
#endif
}
}
weak_alias (__getgroups, getgroups)

View File

@ -81,6 +81,6 @@ setgroups (size_t n, const gid_t *groups)
}
return INLINE_SYSCALL (setgroups, 2, n, kernel_groups);
}
#endif
}
}