1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-23 21:35:29 +03:00

s/=/==/ Typo was causing sub test to always return success.

This commit is contained in:
Jonathan Earl Brassow 2009-12-10 22:06:15 +00:00
parent 448e4251f8
commit 157810ea3d

View File

@ -87,7 +87,7 @@ check_mirror_log_()
{
local lv=$1
local mlog=$(lvs --noheadings -omirror_log $lv | sed -e 's/ //g')
[ "$(basename $lv)_mlog" = "$mlog" ]
[ "$(basename $lv)_mlog" == "$mlog" ]
}
wait_conversion_()