summaryrefslogtreecommitdiff
path: root/src/tty-ask-password-agent
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2016-04-29 10:40:15 +0200
committerLennart Poettering <lennart@poettering.net>2016-04-29 10:40:15 +0200
commite0a24179c0cd874aa901ff618c64041f851537ef (patch)
tree9e9288ef13c7c63c0e59a551a47a214ade4b739a /src/tty-ask-password-agent
parente192a2815ef92ba8b2d6855be6cef0cbf3712272 (diff)
parent1f7be300e9c98a5f3b473d203dadcd9abef69baa (diff)
Merge pull request #3137 from keszybz/dirent-simplification
Various small cleanups in shared code
Diffstat (limited to 'src/tty-ask-password-agent')
-rw-r--r--src/tty-ask-password-agent/tty-ask-password-agent.c2
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 7b67831e54..c7ded451a2 100644
--- a/src/tty-ask-password-agent/tty-ask-password-agent.c
+++ b/src/tty-ask-password-agent/tty-ask-password-agent.c
@@ -481,7 +481,7 @@ static int show_passwords(void) {
if (de->d_type != DT_REG)
continue;
- if (hidden_file(de->d_name))
+ if (hidden_or_backup_file(de->d_name))
continue;
if (!startswith(de->d_name, "ask."))