diff options
author | Jeff Squyres <jsquyres@cisco.com> | 2021-04-30 15:28:33 -0700 |
---|---|---|
committer | Tomáš Mráz <tm@t8m.info> | 2021-06-14 09:03:08 +0200 |
commit | 80bfda5962e5be3daa70e0fc8c75fc97d1c55121 (patch) | |
tree | 4f830c33bfcfc9b5cbba0741cc4b2099c76e7f1a | |
parent | 55f206447a1e4ee26e307e7a9c069236e823b1a5 (diff) | |
download | pam-80bfda5962e5be3daa70e0fc8c75fc97d1c55121.tar.gz pam-80bfda5962e5be3daa70e0fc8c75fc97d1c55121.tar.bz2 pam-80bfda5962e5be3daa70e0fc8c75fc97d1c55121.zip |
pam_misc: set default length of misc_conv() buffer to 4096
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index b283db1b..8e5d0ff7 100644 --- a/configure.ac +++ b/configure.ac @@ -650,9 +650,9 @@ esac AC_ARG_WITH([misc-conv-bufsize], AS_HELP_STRING([--with-misc-conv-bufsize=<number>], - [Size of input buffer for libpam_misc's misc_conv() conversation function, default=512]), + [Size of input buffer for libpam_misc's misc_conv() conversation function, default=4096]), [], - [with_misc_conv_bufsize=512]) + [with_misc_conv_bufsize=4096]) AC_DEFINE_UNQUOTED(PAM_MISC_CONV_BUFSIZE, $with_misc_conv_bufsize, [libpam_misc misc_conv() buffer size.]) AM_CONDITIONAL([COND_BUILD_PAM_KEYINIT], [test "$have_key_syscalls" = 1]) |