http://bugs.gentoo.org/300790 http://lists.alioth.debian.org/pipermail/pkg-shadow-devel/2009-November/007850.html 2009-11-05 Nicolas François * NEWS, src/groupmod.c: Fixed groupmod when configured with --enable-account-tools-setuid. diff --git a/src/groupmod.c b/src/groupmod.c index 4205df2..da6d77f 100644 --- a/src/groupmod.c +++ b/src/groupmod.c @@ -724,7 +724,7 @@ int main (int argc, char **argv) { 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);