diff options
author | Khem Raj <raj.khem@gmail.com> | 2018-12-16 20:53:38 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2018-12-16 21:01:39 -0800 |
commit | bfc4183ea995f1c211385d066cdb1fe9ce89f621 (patch) | |
tree | 3bed747051b6535c29c17358c7e1047edb4f8b08 /src/sysctl | |
parent | 45cb8247d953d2ed4a8cb550296943933bf10a1b (diff) | |
download | systemd-bfc4183ea995f1c211385d066cdb1fe9ce89f621.tar.gz systemd-bfc4183ea995f1c211385d066cdb1fe9ce89f621.tar.bz2 systemd-bfc4183ea995f1c211385d066cdb1fe9ce89f621.zip |
sysctl: Don't pass null directive argument to '%s'
value pointer here is always NULL but subsequent use of that pointer
with a %s format will always be NULL, printing p instead would be a
valid string
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'src/sysctl')
-rw-r--r-- | src/sysctl/sysctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysctl/sysctl.c b/src/sysctl/sysctl.c index 1cfe510180..c67d790323 100644 --- a/src/sysctl/sysctl.c +++ b/src/sysctl/sysctl.c @@ -115,7 +115,7 @@ static int parse_file(OrderedHashmap *sysctl_options, const char *path, bool ign value = strchr(p, '='); if (!value) { - log_error("Line is not an assignment at '%s:%u': %s", path, c, value); + log_error("Line is not an assignment at '%s:%u': %s", path, c, p); if (r == 0) r = -EINVAL; |