1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-25 10:04:04 +03:00

mount: fix parsing of prio value

https://bugzilla.redhat.com/show_bug.cgi?id=722803
This commit is contained in:
Lennart Poettering 2011-08-31 01:46:38 +02:00
parent 4b7b2efb69
commit 3a34ae3a4d

View File

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