1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-31 14:50:15 +03:00

mount-setup: fix selinux label after mounting

rhbz 629268
This commit is contained in:
Lennart Poettering 2010-09-15 01:38:07 +02:00
parent 3333022269
commit 5275d3c13d

View File

@ -31,6 +31,7 @@
#include "log.h"
#include "macro.h"
#include "util.h"
#include "label.h"
typedef struct MountPoint {
const char *what;
@ -108,6 +109,8 @@ static int mount_one(const MountPoint *p) {
return p->fatal ? -errno : 0;
}
label_fix(p->where);
return 0;
}