[arch-dev-public] [PATCH] Added missing else clause in set_consolefont function

Eric Bélanger snowmaniscool at gmail.com
Thu Feb 10 06:28:43 EST 2011


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 <snowmaniscool at gmail.com>
---
 functions |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

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
 }
 
-- 
1.7.4



More information about the arch-dev-public mailing list