diff options
author | Lennart Poettering <lennart@poettering.net> | 2017-09-12 16:57:33 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2017-09-13 11:42:31 +0200 |
commit | b50846055ee7e846697ea9f7fcf959bf0bfb8066 (patch) | |
tree | f499f446cea7437612a0edbfea1724e259b9c90d /src/hwdb | |
parent | hwdb: add Lenovo Yoga 510-14IKB sensor mount quirk (#6799) (diff) | |
download | systemd-b50846055ee7e846697ea9f7fcf959bf0bfb8066.tar.xz systemd-b50846055ee7e846697ea9f7fcf959bf0bfb8066.zip |
exec-util,conf-files: skip non-executable files in execute_directories()
Fixes: #6787
Diffstat (limited to 'src/hwdb')
-rw-r--r-- | src/hwdb/hwdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hwdb/hwdb.c b/src/hwdb/hwdb.c index ead4e1770b..c964a28bce 100644 --- a/src/hwdb/hwdb.c +++ b/src/hwdb/hwdb.c @@ -653,7 +653,7 @@ static int hwdb_update(int argc, char *argv[], void *userdata) { trie->nodes_count++; - r = conf_files_list_strv(&files, ".hwdb", arg_root, conf_file_dirs); + r = conf_files_list_strv(&files, ".hwdb", arg_root, 0, conf_file_dirs); if (r < 0) return log_error_errno(r, "Failed to enumerate hwdb files: %m"); |