summaryrefslogtreecommitdiffstats
path: root/abs/core/shadow/shadow-4.1.4.2-groupmod-pam-check.patch
blob: f25c4e10ff846ffdadfa39c69d6e36341d6e01d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
http://bugs.gentoo.org/300790
http://lists.alioth.debian.org/pipermail/pkg-shadow-devel/2009-November/007850.html

2009-11-05  Nicolas François  <nicolas.francois@centraliens.net>

	* 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);