Merge pull request #3581 from dobyrch/master

systemctl:  Add missing "/" to files created by 'edit --runtime'
This commit is contained in:
Ronny Chevalier 2016-06-23 10:15:40 +01:00 committed by GitHub
commit 2bb6c19f52

View file

@ -6093,7 +6093,7 @@ static int get_file_to_edit(
return log_oom();
if (arg_runtime) {
run = strjoin(paths->runtime_config, name, NULL);
run = strjoin(paths->runtime_config, "/", name, NULL);
if (!run)
return log_oom();
}