* NEWS, src/groupmems.c: Use the "groupmems" PAM service name

instead of "groupmod".
This commit is contained in:
nekral-guest 2008-08-30 18:28:45 +00:00
parent 8851893412
commit 77f81fa0b6
3 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-08-26 Nicolas François <nicolas.francois@centraliens.net>
* NEWS, src/groupmems.c: Use the "groupmems" PAM service name
instead of "groupmod".
2008-08-26 Nicolas François <nicolas.francois@centraliens.net>
* src/chfn.c: Merge some translated messages.

1
NEWS
View File

@ -17,6 +17,7 @@ shadow-4.1.2.1 -> shadow-4.1.3 UNRELEASED
* /etc/group is open readonly when one just wants to list the users of a
group.
* Added syslog support.
* Use the groupmems PAM service name instead of groupmod.
- newusers
* Implement the -r, --system option.
- passwd

View File

@ -183,7 +183,7 @@ static void check_perms (void)
if (NULL == pampw) {
retval = PAM_USER_UNKNOWN;
} else {
retval = pam_start ("groupmod", pampw->pw_name,
retval = pam_start ("groupmems", pampw->pw_name,
&conv, &pamh);
}