aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2018-08-16 14:22:13 +0300
committerSergey Poznyakoff <gray@gnu.org>2018-08-16 14:22:13 +0300
commit84fcfeb07c3c785e818b5a13452b76f2055457a0 (patch)
tree5422b14ed58cf81ef12a9afc644d2928cd6d2860
parent5f13fe76ab44b0476f6634a3368e0115f46eaf52 (diff)
downloadpam-modules-84fcfeb07c3c785e818b5a13452b76f2055457a0.tar.gz
pam-modules-84fcfeb07c3c785e818b5a13452b76f2055457a0.tar.bz2
Version 2.3.90
-rw-r--r--NEWS9
-rw-r--r--configure.ac4
-rw-r--r--lib/graypam.h8
3 files changed, 9 insertions, 12 deletions
diff --git a/NEWS b/NEWS
index b2d04c1..61f74f9 100644
--- a/NEWS
+++ b/NEWS
@@ -1,16 +1,21 @@
-pam-modules -- history of user-visible changes. 2018-08-13
+pam-modules -- history of user-visible changes. 2018-08-16
See the end of file for copying conditions.
Please send pam-modules bug reports to <bug-pam-modules@gnu.org.ua>
+Version 2.3.90 (git)
+
+* Major rewrite of memory allocation code
+
+
Version 2.3.1, 2018-08-13
* Add missing symbol
-pam_innetgr lacked to define the pam_sm_setcred
+pam_innetgr lacked pam_sm_setcred
Version 2.3, 2018-08-12
* New module pam_innetgr
diff --git a/configure.ac b/configure.ac
index 584aa4f..e146a65 100644
--- a/configure.ac
+++ b/configure.ac
@@ -13,24 +13,24 @@
#
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
AC_PREREQ(2.63)
-AC_INIT(pam-modules, 2.3.1, bug-pam-modules@gnu.org.ua)
+AC_INIT(pam-modules, 2.3.90, 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])
AM_INIT_AUTOMAKE([1.11 no-exeext tar-ustar dist-xz silent-rules])
AM_CONFIG_HEADER(config.h)
# Enable silent rules by default:
AM_SILENT_RULES([yes])
dnl Library versioning
-AC_SUBST(VI_CURRENT,1)
+AC_SUBST(VI_CURRENT,2)
AC_SUBST(VI_REVISION,0)
AC_SUBST(VI_AGE,0)
dnl Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
diff --git a/lib/graypam.h b/lib/graypam.h
index 31554e3..dcb9dde 100644
--- a/lib/graypam.h
+++ b/lib/graypam.h
@@ -70,20 +70,12 @@
} while (0)
#define MAKE_STR(pamh, str, var) \
gray_make_str(pamh,str,#var,&var)
-#define WAITDEBUG(arg) do { \
- size_t line = __LINE__; \
- if ((arg)[0] == '=') \
- gray_wait_debug(atoi((arg)+1), __FILE__, line); \
- else \
- gray_wait_debug(0, __FILE__, line); \
-} while (0)
-
void *gray_2nrealloc(void *ptr, size_t *pcount, size_t elsiz);
void gray_pam_delete(char *x);
void gray_cleanup_string(pam_handle_t *pamh, void *x, int error_status);
void gray_cleanup_regex(pam_handle_t *pamh, void *x, int error_status);
void gray_make_str(pam_handle_t *pamh, const char *str, const char *name,

Return to:

Send suggestions and report system problems to the System administrator.