diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-11-11 18:39:39 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-11-14 16:25:32 +0100 |
commit | fde32028a4587fa13567c0f88e91be191ae9bdad (patch) | |
tree | fe72cbadf794d9f1add6ba873ce59276eabc1ea5 /src/reply-password | |
parent | 0221d68a1317407960ea6f88bd4ebc1781999332 (diff) | |
download | systemd-fde32028a4587fa13567c0f88e91be191ae9bdad.tar.gz |
Move LONG_LINE_MAX definition to fileio.h
All users of the macro (except for one, in serialize.c), use the macro in
connection with read_line(), so they must include fileio.h. Let's not play
libc games and require multiple header file to be included for the most common
use of a function.
The removal of def.h includes is not exact. I mostly went over the commits that
switch over to use read_line() and add def.h at the same time and reverted the
addition of def.h in those files.
Diffstat (limited to 'src/reply-password')
-rw-r--r-- | src/reply-password/reply-password.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/reply-password/reply-password.c b/src/reply-password/reply-password.c index 122047ffff..bec754f7be 100644 --- a/src/reply-password/reply-password.c +++ b/src/reply-password/reply-password.c @@ -7,7 +7,6 @@ #include <sys/un.h> #include "alloc-util.h" -#include "def.h" #include "fd-util.h" #include "fileio.h" #include "log.h" |