[systemd-commits] src/mount.c

Lennart Poettering lennart at kemper.freedesktop.org
Tue Aug 30 16:47:04 PDT 2011


 src/mount.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3a34ae3a4d211d9236ca77d9a162aa27ac11f5f9
Author: Lennart Poettering <lennart at poettering.net>
Date:   Wed Aug 31 01:46:38 2011 +0200

    mount: fix parsing of prio value
    
    https://bugzilla.redhat.com/show_bug.cgi?id=722803

diff --git a/src/mount.c b/src/mount.c
index bd1612f..829c2cc 100644
--- a/src/mount.c
+++ b/src/mount.c
@@ -1474,7 +1474,7 @@ static int mount_find_pri(char *options) {
         char *end, *pri;
         unsigned long r;
 
-        if (!(pri = mount_test_option(options, "pri=")))
+        if (!(pri = mount_test_option(options, "pri")))
                 return 0;
 
         pri += 4;



More information about the systemd-commits mailing list