summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bin/isolated-functions.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/bin/isolated-functions.sh b/bin/isolated-functions.sh
index be054d4ee..0bb4fa6d5 100644
--- a/bin/isolated-functions.sh
+++ b/bin/isolated-functions.sh
@@ -49,7 +49,7 @@ esyslog() {
}
einfo() {
- einfon "$*\n"
+ einfon "$*"
LAST_E_CMD="einfo"
return 0
}
@@ -57,7 +57,11 @@ einfo() {
einfon() {
elog_base INFO "$*"
[[ ${RC_ENDCOL} != "yes" && ${LAST_E_CMD} == "ebegin" ]] && echo
- echo -ne " ${GOOD}*${NORMAL} $*"
+ if [ "${FUNCNAME[1]}" == "einfo" ]; then
+ echo -e " ${GOOD}*${NORMAL} $*"
+ else
+ echo -ne " ${GOOD}*${NORMAL} $*"
+ fi
LAST_E_CMD="einfon"
return 0
}