In CT_Abort(), don't send output to stderr. Let the log facility handle where things should go.

This commit is contained in:
Yann E. MORIN" 2007-05-23 21:08:24 +00:00
parent 266a81de2c
commit b521e3418d

View File

@ -104,7 +104,7 @@ CT_DoEnd()
# Abort the execution with an error message
# Usage: CT_Abort <message>
CT_Abort() {
CT_DoLog ERROR "$1" >&2
CT_DoLog ERROR "$1"
exit 1
}