Blob Blame History Raw
From 3a34ae3a4d211d9236ca77d9a162aa27ac11f5f9 Mon Sep 17 00:00:00 2001
From: Lennart Poettering <lennart@poettering.net>
Date: Wed, 31 Aug 2011 01:46:38 +0200
Subject: [PATCH] mount: fix parsing of prio value

https://bugzilla.redhat.com/show_bug.cgi?id=722803
---
 src/mount.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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;
-- 
1.7.4.4