In CT_Abort(), don't send output to stderr. Let the log facility handle where things should go.
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed May 23 21:08:24 2007 +0000 (2007-05-23)
changeset 12844e133d0cddb
parent 127 2ba6a8d5d4be
child 129 ebdfd61687fb
In CT_Abort(), don't send output to stderr. Let the log facility handle where things should go.
scripts/functions
     1.1 --- a/scripts/functions	Wed May 23 20:49:02 2007 +0000
     1.2 +++ b/scripts/functions	Wed May 23 21:08:24 2007 +0000
     1.3 @@ -104,7 +104,7 @@
     1.4  # Abort the execution with an error message
     1.5  # Usage: CT_Abort <message>
     1.6  CT_Abort() {
     1.7 -    CT_DoLog ERROR "$1" >&2
     1.8 +    CT_DoLog ERROR "$1"
     1.9      exit 1
    1.10  }
    1.11