[systemd-commits] src/mount-setup.c
Lennart Poettering
lennart at kemper.freedesktop.org
Tue Sep 14 16:38:36 PDT 2010
src/mount-setup.c | 3 +++
1 file changed, 3 insertions(+)
New commits:
commit 5275d3c13d6321ffd749a976aaad69321313fac7
Author: Lennart Poettering <lennart at poettering.net>
Date: Wed Sep 15 01:38:07 2010 +0200
mount-setup: fix selinux label after mounting
rhbz 629268
diff --git a/src/mount-setup.c b/src/mount-setup.c
index c1ddbe4..d2f05bc 100644
--- a/src/mount-setup.c
+++ b/src/mount-setup.c
@@ -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;
}
More information about the systemd-commits
mailing list