diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-10-14 16:24:25 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-10-14 16:24:25 +0200 |
commit | 2ee4e222ff4d14436c00d681c8273384dea690bf (patch) | |
tree | c21d7ff72760b1490cc7dd74d99aba490937f6e4 /src | |
parent | 995c5e96cdf9e6054a4df04960253d897f4d7cc2 (diff) |
tty-ask-password-agent: don't warn if we cannot disable wall messages on the calling tty
For example, due to perm issues.
THis simply downgrades the message about it, since this is purely
cosmetical anyway.
Fixes #1543.
Diffstat (limited to 'src')
-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 93cce186f0..53986babae 100644 --- a/src/tty-ask-password-agent/tty-ask-password-agent.c +++ b/src/tty-ask-password-agent/tty-ask-password-agent.c @@ -381,7 +381,7 @@ static int wall_tty_block(void) { fd = open(p, O_RDONLY|O_CLOEXEC|O_NONBLOCK|O_NOCTTY); if (fd < 0) - return log_error_errno(errno, "Failed to open %s: %m", p); + return log_debug_errno(errno, "Failed to open %s: %m", p); return fd; } |