Hello all;
Tries to print a mistake, with the function (merr) is depend library
openserctl.base

Old:
if [ -f "$MYLIBDIR/" ]; then
        . "$MYLIBDIR/openserctl.base"
else
        merr "Cannot load core functions '$MYLIBDIR/openserctl.base' -
exiting ..."
        exit -1
fi

New:
if [ -f "$MYLIBDIR/openserctl.base" ]; then
        . "$MYLIBDIR/openserctl.base"
else
        echo -e "Cannot load core functions '$MYLIBDIR/openserctl.base' -
exiting ...\n"
        exit -1
fi
_______________________________________________
Devel mailing list
[email protected]
http://lists.openser.org/cgi-bin/mailman/listinfo/devel

Reply via email to