From 15ff1596246ba37521ff8807722a7679390fdf01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eric=20B=C3=A9langer?= Date: Thu, 10 Feb 2011 06:28:43 -0500 Subject: Added missing else clause in set_consolefont function MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The else clause was missing in the return value test. This caused the status to remain at BUSY instead of being changed to DONE for systems where CONSOLEMAP was not used. Signed-off-by: Eric BĂ©langer --- functions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/functions b/functions index b424879..909b756 100644 --- a/functions +++ b/functions @@ -354,6 +354,8 @@ if [ "$CONSOLE" = "" -a "$TERM" = "linux" -a -t 1 ]; then printf "\033(K"; fi EOF stat_done + else + stat_done fi } -- cgit v1.2.3