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 @@
-pam-modules -- history of user-visible changes. 2018-08-12
+pam-modules -- history of user-visible changes. 2018-08-13
See the end of file for copying conditions.
Please send pam-modules bug reports to <bug-pam-modules@gnu.org.ua>
+Version 2.3.1, 2018-08-13
+
+* Add missing symbol
+
+pam_innetgr lacked to define the pam_sm_setcred
+
+
Version 2.3, 2018-08-12
* 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 @@
AC_PREREQ(2.63)
-AC_INIT(pam-modules, 2.3, bug-pam-modules@gnu.org.ua)
+AC_INIT(pam-modules, 2.3.1, bug-pam-modules@gnu.org.ua)
AC_CONFIG_SRCDIR(pam_fshadow/pam_fshadow.c)
AC_CONFIG_AUX_DIR([build-aux])
AC_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,
}
PAM_EXTERN int
+pam_sm_setcred(pam_handle_t *pamh, int flags, int argc, const char **argv)
+{
+ return check_netgroup(pamh, argc, argv, __FUNCTION__);
+}
+
+PAM_EXTERN int
pam_sm_chauthtok(pam_handle_t *pamh,int flags,int argc,const char **argv)
{
return check_netgroup(pamh, argc, argv, __FUNCTION__);

Return to:

Send suggestions and report system problems to the System administrator.