chiark / gitweb /
utmp-wtmp: allow overriding username on wall
[elogind.git] / src / systemctl / systemctl.c
index 254ca10c4fff75ee94a11591a378e475aef0ac15..156605d1b6a9da505fb733724cff4077307292c6 100644 (file)
@@ -257,7 +257,7 @@ static void warn_wall(enum action a) {
                 }
 
                 if (*p) {
-                        utmp_wall(p, NULL);
+                        utmp_wall(p, NULL, NULL);
                         return;
                 }
         }
@@ -265,7 +265,7 @@ static void warn_wall(enum action a) {
         if (!table[a])
                 return;
 
-        utmp_wall(table[a], NULL);
+        utmp_wall(table[a], NULL, NULL);
 }
 
 static bool avoid_bus(void) {