diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-04-24 19:53:16 -0300 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-04-25 00:05:14 -0300 |
commit | db5c0122853a9ecf1cc92e6593461932df2fa866 (patch) | |
tree | 45f2cca6a0050dfa36ecb08af64d974ec4542ea5 /src/tty-ask-password-agent | |
parent | 60b6991a4dd687097bbc4f1e1ef7585efee079d9 (diff) | |
download | systemd-db5c0122853a9ecf1cc92e6593461932df2fa866.tar.gz |
conf-parser: restrict .include usage
Disallow recursive .include, and make it unavailable in anything but
unit files.
Diffstat (limited to 'src/tty-ask-password-agent')
-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 6888a64d4d..f463662d6b 100644 --- a/src/tty-ask-password-agent/tty-ask-password-agent.c +++ b/src/tty-ask-password-agent/tty-ask-password-agent.c @@ -275,7 +275,7 @@ static int parse_password(const char *filename, char **wall) { return -errno; } - r = config_parse(NULL, filename, f, NULL, config_item_table_lookup, (void*) items, true, NULL); + r = config_parse(NULL, filename, f, NULL, config_item_table_lookup, (void*) items, true, false, NULL); if (r < 0) { log_error("Failed to parse password file %s: %s", filename, strerror(-r)); goto finish; |