--- mcore-src/trunk/mcore-tools/daemon/include/daemon.global.class 2013/05/13 07:06:33 2091 +++ mcore-src/trunk/mcore-tools/daemon/include/daemon.global.class 2014/01/02 16:28:46 2115 @@ -226,7 +226,8 @@ # show missing and set the right retval if [[ -z ${missing} ]] then - rvecho "${sorted}" + # do not escape, or CRLFS get printed to screen too + rvecho ${sorted} return 0 else for req in ${sorted} @@ -234,12 +235,14 @@ if no_duplicate "${missing}" "$req" then # print normal - rvecho -n " ${req}" + rvecho -n "${req} " else # print missing - eecho -n " ${req}" + eecho -n "${req} " fi done + # print CRLF + echo return 1 fi }