From: Lennart Poettering Date: Fri, 22 Sep 2017 18:23:58 +0000 (+0200) Subject: def: add new constant LONG_LINE_MAX X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=ae8534f9ad3030bbbff992c74b48428d449c86e3;p=elogind.git def: add new constant LONG_LINE_MAX LONG_LINE_MAX is much like LINE_MAX, but longer. As it turns out LINE_MAX at 4096 is too short for many usecases. Since the general concept of having a common maximum line length limit makes sense let's add our own, and make it larger (1MB for now). --- diff --git a/src/basic/def.h b/src/basic/def.h index d30b4a106..1571f921b 100644 --- a/src/basic/def.h +++ b/src/basic/def.h @@ -96,3 +96,5 @@ "/usr/local/lib/" n "\0" \ "/usr/lib/" n "\0" \ _CONF_PATHS_SPLIT_USR(n) + +#define LONG_LINE_MAX (1U*1024U*1024U)