From: Lennart Poettering Date: Fri, 5 Jan 2018 11:18:32 +0000 (+0100) Subject: manager: make use of NEWLINE macro where appropriate X-Git-Tag: v237~105^2~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=007e4b5490d258e9fccd8e751b258ef848f7f861;p=thirdparty%2Fsystemd.git manager: make use of NEWLINE macro where appropriate --- diff --git a/src/core/manager.c b/src/core/manager.c index 07809fea9c7..6f50b177e01 100644 --- a/src/core/manager.c +++ b/src/core/manager.c @@ -1886,7 +1886,7 @@ static void manager_invoke_notify_message(Manager *m, Unit *u, pid_t pid, const assert(u); assert(buf); - tags = strv_split(buf, "\n\r"); + tags = strv_split(buf, NEWLINE); if (!tags) { log_oom(); return;