19 lines
531 B
Plaintext
19 lines
531 B
Plaintext
--- src/rdconf2.c
|
|
+++ src/rdconf2.c 2009/01/12 12:16:30
|
|
@@ -158,6 +158,7 @@
|
|
misc_log("Luser volume for %s is missing options that "
|
|
"are required by global <mntoptions>\n",
|
|
vol->mountpoint);
|
|
+ return false;
|
|
}
|
|
if (config->options_allow->items != 0 &&
|
|
!allow_ok(config->options_allow, &vol->options)) {
|
|
@@ -171,6 +172,7 @@
|
|
misc_log("Luser volume for %s has options that are "
|
|
"denied by global <mntoptions>\n",
|
|
vol->mountpoint);
|
|
+ return false;
|
|
}
|
|
}
|
|
|