mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
increase TTY_NAME_MAX limit to 32
the old value of 20 was reported by Laurent Bercot as being insufficient for a reasonable real-world usage case. actual problem was the internal buffer used by ttyname(), but the implementation of ttyname uses TTY_NAME_MAX, and for consistency it's best to increase both. the new value is aligned with glibc.
This commit is contained in:
parent
cabe9aa974
commit
8c8cf4bbd2
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@
|
|||
#define WORD_BIT 32
|
||||
#define SSIZE_MAX LONG_MAX
|
||||
#define TZNAME_MAX 6
|
||||
#define TTY_NAME_MAX 20
|
||||
#define TTY_NAME_MAX 32
|
||||
#define HOST_NAME_MAX 255
|
||||
|
||||
/* Implementation choices... */
|
||||
|
|
Loading…
Add table
Reference in a new issue