[git commit] mount: undo recent breakage when mount flags were made unsigned

Denys Vlasenko vda.linux at googlemail.com
Fri Jun 22 13:06:27 UTC 2012


commit: http://git.busybox.net/busybox/commit/?id=a396ade9f83f05a65b0a6df3dcbdeb8cfef0c696
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 util-linux/mount.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/util-linux/mount.c b/util-linux/mount.c
index 220a4e6..95dee18 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -467,7 +467,7 @@ static unsigned long parse_mount_options(char *options, char **unrecognized)
 		for (i = 0; i < ARRAY_SIZE(mount_options); i++) {
 			if (strcasecmp(option_str, options) == 0) {
 				unsigned long fl = mount_options[i];
-				if (fl < 0)
+				if ((long)fl < 0)
 					flags &= fl;
 				else
 					flags |= fl;


More information about the busybox-cvs mailing list