Commit 90621516 authored by Konstantin Baev's avatar Konstantin Baev

Change one warning

parent bd68d7f8
...@@ -168,13 +168,14 @@ status() ...@@ -168,13 +168,14 @@ status()
{ {
local PRECOMP local PRECOMP
echo "CIFS module status:" echo "CIFS module status:"
if is_origmoduled ; then
echo " origin kernel module $ORIGMODULENAME loaded"
fi
if is_moduled ; then if is_moduled ; then
echo " kernel module $MODULENAME is loaded" echo " kernel module $MODULENAME is loaded"
else else
echo " kernel module $MODULENAME is not loaded" if is_origmoduled ; then
echo " origin kernel module $ORIGMODULENAME loaded"
fi
echo " WARNING!!! Kernel module $MODULENAME is not loaded!"
echo " Possible ERRORS when working with WINE!"
fi fi
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment