[arch-projects] [PATCH 2/3] rc: fix whitespace in case statement

Dave Reisner d at falconindy.com
Sat Apr 23 21:01:18 EDT 2011


---
 rc |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/rc b/rc
index 4bb9730..9abeb52 100755
--- a/rc
+++ b/rc
@@ -25,15 +25,15 @@ case $1 in
 			have_daemon "$d" || continue
 			# print running / stopped satus
 			if ! ck_daemon "$d"; then
-			    printf "${C_OTHER}[${C_DONE}STARTED${C_OTHER}]"
+				printf "${C_OTHER}[${C_DONE}STARTED${C_OTHER}]"
 			else
-			    printf "${C_OTHER}[${C_FAIL}STOPPED${C_OTHER}]"
+				printf "${C_OTHER}[${C_FAIL}STOPPED${C_OTHER}]"
 			fi
 			# print auto / manual status
 			if ! ck_autostart "$d"; then
-			    printf "${C_OTHER}[${C_DONE}AUTO${C_OTHER}]"
+				printf "${C_OTHER}[${C_DONE}AUTO${C_OTHER}]"
 			else
-			    printf "${C_OTHER}[${C_FAIL}    ${C_OTHER}]"
+				printf "${C_OTHER}[${C_FAIL}    ${C_OTHER}]"
 			fi
 			printf " ${C_MAIN}$d${C_CLEAR}\n"
 		done
-- 
1.7.4.4



More information about the arch-projects mailing list