diff options
author | Michal Schmidt <mschmidt@redhat.com> | 2015-11-05 13:44:01 +0100 |
---|---|---|
committer | Michal Schmidt <mschmidt@redhat.com> | 2015-11-05 13:44:01 +0100 |
commit | ad71eee5505fa24e9618196d4e5aa43ed6bf5639 (patch) | |
tree | 8376dd231bab009398fa69944dfa4649cb990160 /src | |
parent | a6bff4a7428b9539d85618e3c91fcb60be93f3fa (diff) |
tty-ask-password-agent: fix typo in error message
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 d2938f0872..8cfe10330d 100644 --- a/src/tty-ask-password-agent/tty-ask-password-agent.c +++ b/src/tty-ask-password-agent/tty-ask-password-agent.c @@ -475,7 +475,7 @@ static int show_passwords(void) { if (errno == ENOENT) return 0; - return log_error_errno(errno, "Failed top open /run/systemd/ask-password: %m"); + return log_error_errno(errno, "Failed to open /run/systemd/ask-password: %m"); } FOREACH_DIRENT_ALL(de, d, return log_error_errno(errno, "Failed to read directory: %m")) { |