diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-05-08 10:43:49 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-05-28 06:44:38 +0200 |
commit | 4ff361cc8611459388d7f75955bfe645f894f065 (patch) | |
tree | f0fe232aee56d0517cdd0e8b86f1d497afe65f85 /src/core/dbus-path.c | |
parent | path-util: make path_extract_filename/directory() handle "." gracefully (diff) | |
download | systemd-4ff361cc8611459388d7f75955bfe645f894f065.tar.xz systemd-4ff361cc8611459388d7f75955bfe645f894f065.zip |
tree-wide: always drop unnecessary dot in path
Diffstat (limited to 'src/core/dbus-path.c')
-rw-r--r-- | src/core/dbus-path.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/dbus-path.c b/src/core/dbus-path.c index e132cd2b3c..e025c31532 100644 --- a/src/core/dbus-path.c +++ b/src/core/dbus-path.c @@ -103,7 +103,7 @@ static int bus_path_set_transient_property( if (!k) return -ENOMEM; - path_simplify(k, false); + path_simplify(k); s = new0(PathSpec, 1); if (!s) |