--enable-account-tools-setuid.
+2009-11-05 Nicolas François <nicolas.francois@centraliens.net>
+
+ * NEWS, src/groupmod.c: Fixed groupmod when configured with
+ --enable-account-tools-setuid.
+
2009-11-01 Nicolas François <nicolas.francois@centraliens.net>
* NEWS, man/login.defs.d/ENV_SUPATH.xml, libmisc/setupenv.c:
* report usage error to stderr, but report usage help to stdout (and return
zero) when explicitly requested (e.g. with --help).
+- groupmod
+ * Fixed groupmod when configured with --enable-account-tools-setuid.
- su
* Document the su exit values.
* When su receives a signal, wait for the child to terminate (after
{
struct passwd *pampw;
pampw = getpwuid (getuid ()); /* local, no need for xgetpwuid */
- if (NULL == pamh) {
+ if (NULL == pampw) {
fprintf (stderr,
_("%s: Cannot determine your user name.\n"),
Prog);