Check first todo() argument against operating system name and operating system

name plus file system name.
This commit is contained in:
pjd 2010-08-06 21:56:32 +00:00
parent cf25be5f47
commit 970b3134a2

View File

@ -87,8 +87,7 @@ test_check()
todo()
{
echo "${os}" | $GREP -iq "${1}"
if [ $? -eq 0 ]; then
if [ "${os}" = "${1}" -o "${os}:${fs}" = "${1}" ]; then
todomsg="${2}"
fi
}