summaryrefslogtreecommitdiff
path: root/src/journal/journald-wall.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/journal/journald-wall.c')
-rw-r--r--src/journal/journald-wall.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/journal/journald-wall.c b/src/journal/journald-wall.c
index e3201674d4..7863766ae7 100644
--- a/src/journal/journald-wall.c
+++ b/src/journal/journald-wall.c
@@ -22,6 +22,8 @@
#include "utmp-wtmp.h"
#include "journald-server.h"
#include "journald-wall.h"
+#include "formats-util.h"
+#include "process-util.h"
void server_forward_wall(
Server *s,
@@ -63,7 +65,7 @@ void server_forward_wall(
} else
l = message;
- r = utmp_wall(l, "systemd-journald", NULL);
+ r = utmp_wall(l, "systemd-journald", NULL, NULL, NULL);
if (r < 0)
log_debug_errno(r, "Failed to send wall message: %m");
}