Version 2.3.90

This commit is contained in:
Sergey Poznyakoff 2018-08-16 14:22:13 +03:00
parent 5f13fe76ab
commit 84fcfeb07c
3 changed files with 9 additions and 12 deletions

9
NEWS
View file

@ -1,13 +1,18 @@
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

View file

@ -16,7 +16,7 @@
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])
@ -27,7 +27,7 @@ AM_CONFIG_HEADER(config.h)
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)

View file

@ -73,14 +73,6 @@
#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);