1
0
mirror of https://github.com/cmand/yarrp.git synced 2024-05-11 05:55:06 +00:00

Set MAXLINE to 4096 to avoid buffer overrun for long lines

This commit is contained in:
Oliver Gasser
2021-12-22 10:40:10 +01:00
parent fe916cff5b
commit c6c2834591

View File

@ -7,7 +7,7 @@
typedef void (*void_fn_t)();
/* { from defs.h */
#define prefix_touchar(prefix) ((u_char *)&(prefix)->add.sin)
#define MAXLINE 1024
#define MAXLINE 4096
#define BIT_TEST(f, b) ((f) & (b))
/* } */