summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-05-23 21:08:24 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-05-23 21:08:24 (GMT)
commitb521e3418dde27c33e8d1a50b3e94efa7e490f66 (patch)
treedb02c57d2a973818d060db32dfbf480473a79913 /scripts
parent266a81de2cc91e91beb043939a8ab1cd5f075198 (diff)
In CT_Abort(), don't send output to stderr. Let the log facility handle where things should go.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/functions b/scripts/functions
index b211cbe..71eac4f 100644
--- a/scripts/functions
+++ b/scripts/functions
@@ -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
}