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