From: Lennart Poettering Date: Mon, 13 Aug 2012 14:30:10 +0000 (+0200) Subject: umount: MS_MGC_VAL is so 90s X-Git-Tag: v189~85 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=8caf9d6836c3ed5b7bb4c1ea8dea5241a634c298;hp=5a7e959984788cf89719dec31999409b63bb802b umount: MS_MGC_VAL is so 90s --- diff --git a/src/core/umount.c b/src/core/umount.c index a5a215b2b..b9afac7ed 100644 --- a/src/core/umount.c +++ b/src/core/umount.c @@ -440,7 +440,7 @@ static int mount_points_list_remount_read_only(MountPoint **head, bool *changed) LIST_FOREACH_SAFE(mount_point, m, n, *head) { /* Trying to remount read-only */ - if (mount(NULL, m->path, NULL, MS_MGC_VAL|MS_REMOUNT|MS_RDONLY, NULL) == 0) { + if (mount(NULL, m->path, NULL, MS_REMOUNT|MS_RDONLY, NULL) == 0) { if (changed) *changed = true;