aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/rc-status.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/rc-status.c b/src/rc-status.c
index cc26716f..2d80d5dd 100644
--- a/src/rc-status.c
+++ b/src/rc-status.c
@@ -30,7 +30,7 @@ static void print_level (char *level)
static void print_service (char *service)
{
char status[10];
- int cols = printf (" %s\n", service);
+ int cols = printf (" %s", service);
rc_service_state_t state = rc_service_state (service);
einfo_color_t color = ECOLOR_BAD;
@@ -54,6 +54,9 @@ static void print_service (char *service)
color = ECOLOR_WARN;
} else
snprintf (status, sizeof (status), " stopped ");
+
+ if (! rc_env_bool ("RC_NOCOLOR"))
+ printf ("\n");
ebracket (cols, color, status);
}