1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-10-09 23:33:17 +03:00

Suppress locking library load failure message if --ignorelockingfailure.

This commit is contained in:
Alasdair Kergon
2006-04-03 18:43:55 +00:00
parent 99048d18b9
commit 1a01b0c103
5 changed files with 14 additions and 7 deletions

View File

@@ -657,7 +657,7 @@ static int _init_formats(struct cmd_context *cmd)
return 0;
}
if (!(lib = load_shared_library(cmd->cft, cv->v.str,
"format"))) {
"format", 0))) {
stack;
return 0;
}
@@ -753,7 +753,7 @@ static int _init_segtypes(struct cmd_context *cmd)
return 0;
}
if (!(lib = load_shared_library(cmd->cft, cv->v.str,
"segment type"))) {
"segment type", 0))) {
stack;
return 0;
}