1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-28 11:55:44 +03:00

tmpfiles: simplification

This commit is contained in:
Lennart Poettering 2014-02-19 17:52:41 +01:00
parent 833fce2857
commit e26da2dcea

View File

@ -731,7 +731,7 @@ static int create_item(Item *i) {
break;
case CREATE_SYMLINK: {
char *x;
_cleanup_free_ char *x = NULL;
label_context_set(i->path, S_IFLNK);
r = symlink(i->argument, i->path);
@ -751,12 +751,10 @@ static int create_item(Item *i) {
}
if (!streq(i->argument, x)) {
free(x);
log_error("%s is not the right symlinks.", i->path);
return -EEXIST;
}
free(x);
break;
}