# HG changeset patch # User "Yann E. MORIN" # Date 1179954504 0 # Node ID 44e133d0cddba4ea8f3d11a5e0e8ce237e05c33f # Parent 2ba6a8d5d4beaf5482168848b00b7ad9624ecf44 In CT_Abort(), don't send output to stderr. Let the log facility handle where things should go. diff -r 2ba6a8d5d4be -r 44e133d0cddb scripts/functions --- a/scripts/functions Wed May 23 20:49:02 2007 +0000 +++ b/scripts/functions Wed May 23 21:08:24 2007 +0000 @@ -104,7 +104,7 @@ # Abort the execution with an error message # Usage: CT_Abort CT_Abort() { - CT_DoLog ERROR "$1" >&2 + CT_DoLog ERROR "$1" exit 1 }