[arch-dev-public] [PATCH] Added missing else clause in set_consolefont function
10 Feb
2011
10 Feb
'11
11:28 a.m.
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@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
5064
Age (days ago)
5064
Last active (days ago)
0 comments
1 participants
participants (1)
-
Eric Bélanger