diff options
author | Daniel Mack <daniel@zonque.org> | 2015-04-24 15:31:29 +0200 |
---|---|---|
committer | Daniel Mack <daniel@zonque.org> | 2015-04-24 17:48:12 +0200 |
commit | 99f710dde855f7ecb699ddac6ad77923c1f6bc85 (patch) | |
tree | 3fb5bb95bd9eeb0ad1839285b08ae0665cf76e50 /src/journal | |
parent | 8aaa023ae78f3cb28db3edd87f96b21486810b91 (diff) |
shared/utmp-wtmp: add parameter for origin tty and callback userdata
Instead of looking up the tty from STDIN, let utmp_wall() take an argument
to specify an origin tty for the wall message. Only if that argument is
NULL do the STDIN lookup.
Also add an void *userdata argument that is handed back to the callback
function.
Diffstat (limited to 'src/journal')
-rw-r--r-- | src/journal/journald-wall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/journald-wall.c b/src/journal/journald-wall.c index 5298e45be9..7863766ae7 100644 --- a/src/journal/journald-wall.c +++ b/src/journal/journald-wall.c @@ -65,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"); } |