aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS9
-rw-r--r--configure.ac2
-rw-r--r--pam_innetgr/pam_innetgr.c6
3 files changed, 15 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 0422c84..b2d04c1 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,15 @@
1pam-modules -- history of user-visible changes. 2018-08-12 1pam-modules -- history of user-visible changes. 2018-08-13
2See the end of file for copying conditions. 2See the end of file for copying conditions.
3 3
4Please send pam-modules bug reports to <bug-pam-modules@gnu.org.ua> 4Please send pam-modules bug reports to <bug-pam-modules@gnu.org.ua>
5 5
6Version 2.3.1, 2018-08-13
7
8* Add missing symbol
9
10pam_innetgr lacked to define the pam_sm_setcred
11
12
6Version 2.3, 2018-08-12 13Version 2.3, 2018-08-12
7 14
8* New module pam_innetgr 15* New module pam_innetgr
diff --git a/configure.ac b/configure.ac
index 49b01d5..82fbc8a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -16,7 +16,7 @@
16 16
17AC_PREREQ(2.63) 17AC_PREREQ(2.63)
18 18
19AC_INIT(pam-modules, 2.3, bug-pam-modules@gnu.org.ua) 19AC_INIT(pam-modules, 2.3.1, bug-pam-modules@gnu.org.ua)
20AC_CONFIG_SRCDIR(pam_fshadow/pam_fshadow.c) 20AC_CONFIG_SRCDIR(pam_fshadow/pam_fshadow.c)
21AC_CONFIG_AUX_DIR([build-aux]) 21AC_CONFIG_AUX_DIR([build-aux])
22AC_CONFIG_MACRO_DIR([m4]) 22AC_CONFIG_MACRO_DIR([m4])
diff --git a/pam_innetgr/pam_innetgr.c b/pam_innetgr/pam_innetgr.c
index f1f5e5d..2b9dc58 100644
--- a/pam_innetgr/pam_innetgr.c
+++ b/pam_innetgr/pam_innetgr.c
@@ -273,6 +273,12 @@ pam_sm_authenticate(pam_handle_t *pamh,
273} 273}
274 274
275PAM_EXTERN int 275PAM_EXTERN int
276pam_sm_setcred(pam_handle_t *pamh, int flags, int argc, const char **argv)
277{
278 return check_netgroup(pamh, argc, argv, __FUNCTION__);
279}
280
281PAM_EXTERN int
276pam_sm_chauthtok(pam_handle_t *pamh,int flags,int argc,const char **argv) 282pam_sm_chauthtok(pam_handle_t *pamh,int flags,int argc,const char **argv)
277{ 283{
278 return check_netgroup(pamh, argc, argv, __FUNCTION__); 284 return check_netgroup(pamh, argc, argv, __FUNCTION__);

Return to:

Send suggestions and report system problems to the System administrator.