]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/journal/journald-wall.c
Merge pull request #1668 from ssahani/net1
[thirdparty/systemd.git] / src / journal / journald-wall.c
index 5298e45be9502865e5e0724afede3c03aa6f4db2..5284914941f3091140cf43fc8f905cd4d979aa79 100644 (file)
   along with systemd; If not, see <http://www.gnu.org/licenses/>.
 ***/
 
-#include "utmp-wtmp.h"
-#include "journald-server.h"
-#include "journald-wall.h"
 #include "formats-util.h"
+#include "journald-server.h"
 #include "process-util.h"
+#include "string-util.h"
+#include "utmp-wtmp.h"
+#include "journald-wall.h"
 
 void server_forward_wall(
                 Server *s,
@@ -65,7 +66,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");
 }