diff options
author | Jeff Squyres <jsquyres@cisco.com> | 2021-04-30 15:16:38 -0700 |
---|---|---|
committer | Tomáš Mráz <tm@t8m.info> | 2021-06-14 09:03:08 +0200 |
commit | 55f206447a1e4ee26e307e7a9c069236e823b1a5 (patch) | |
tree | 57666d35c26bb08871f4d5f221d48064b7c666af /libpam_misc | |
parent | b3bb13e18a74e9ece825b7de1b81db97ebb107a0 (diff) | |
download | pam-55f206447a1e4ee26e307e7a9c069236e823b1a5.tar.gz pam-55f206447a1e4ee26e307e7a9c069236e823b1a5.tar.bz2 pam-55f206447a1e4ee26e307e7a9c069236e823b1a5.zip |
pam_misc: make length of misc_conv() configurable
Add --with-misc-conv-bufsize=<number> option to configure to allow
a longer buffer size for libpam_misc's misc_conv() function (it still
defaults to 512 bytes).
Signed-off-by: Jeff Squyres <jsquyres@cisco.com>
Diffstat (limited to 'libpam_misc')
-rw-r--r-- | libpam_misc/misc_conv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpam_misc/misc_conv.c b/libpam_misc/misc_conv.c index f28b1093..908ee890 100644 --- a/libpam_misc/misc_conv.c +++ b/libpam_misc/misc_conv.c @@ -18,7 +18,7 @@ #include <security/pam_appl.h> #include <security/pam_misc.h> -#define INPUTSIZE PAM_MAX_RESP_SIZE /* maximum length of input+1 */ +#define INPUTSIZE PAM_MISC_CONV_BUFSIZE /* maximum length of input+1 */ #define CONV_ECHO_ON 1 /* types of echo state */ #define CONV_ECHO_OFF 0 |