diff options
author | Michal Sekletar <msekletar@users.noreply.github.com> | 2017-01-24 03:18:40 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-01-23 21:18:40 -0500 |
commit | 29e6561f89ea21f10e0ce48f8d69f4dd21492dee (patch) | |
tree | 15fd84e1e752775e89732b0f201beb468e17706b | |
parent | 87fe170749cff0bcb2a2f48cd025c12bbbf8ffa2 (diff) |
load-fragment: fix comment to reflect changes made in 43eb109 (#5138)
-rw-r--r-- | src/core/load-fragment.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/load-fragment.c b/src/core/load-fragment.c index bc0cf73d39..243c288885 100644 --- a/src/core/load-fragment.c +++ b/src/core/load-fragment.c @@ -620,7 +620,7 @@ int config_parse_exec( * If it's prefixed with - and the path doesn't exist, * we ignore it instead of erroring out; * if it's prefixed with @, we allow overriding of argv[0]; - * and if it's prefixed with !, it will be run with full privileges */ + * and if it's prefixed with +, it will be run with full privileges */ if (*f == '-' && !ignore) ignore = true; else if (*f == '@' && !separate_argv0) |