diff options
author | Sebastian Thorarensen <sebth@naju.se> | 2014-03-14 00:38:05 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-03-14 21:27:33 +0100 |
commit | 9003d9b0d628be059922e522fd35f9c5b4d8b039 (patch) | |
tree | 3363d67fa31dcb4f83a1615eef66cdf160fb0256 /src/tty-ask-password-agent/tty-ask-password-agent.c | |
parent | 5a4d665ad679a8436f1210ba67d713a8f0b91b96 (diff) |
utmp-wtmp: allow overriding username on wall
utmp_wall() now takes an optional argument 'username_override' which
allows the caller to override the username shown on wall messages.
journald will use this to inform users that its wall messages comes from
'systemd-journald'.
Diffstat (limited to 'src/tty-ask-password-agent/tty-ask-password-agent.c')
-rw-r--r-- | src/tty-ask-password-agent/tty-ask-password-agent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tty-ask-password-agent/tty-ask-password-agent.c b/src/tty-ask-password-agent/tty-ask-password-agent.c index 7a90e6507f..fa4d660215 100644 --- a/src/tty-ask-password-agent/tty-ask-password-agent.c +++ b/src/tty-ask-password-agent/tty-ask-password-agent.c @@ -538,7 +538,7 @@ static int show_passwords(void) { free(p); if (wall) { - utmp_wall(wall, wall_tty_match); + utmp_wall(wall, NULL, wall_tty_match); free(wall); } } |