From f077f179edaeb746b267421baa29ec751c38b713 Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Thu, 22 Nov 2007 21:46:51 +0000 Subject: [PATCH] touch ups --- src/rc.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/rc.c b/src/rc.c index d30ccedc..33f6ef37 100644 --- a/src/rc.c +++ b/src/rc.c @@ -978,7 +978,7 @@ int main (int argc, char **argv) run_script (INITEARLYSH); uname (&uts); - printf (" %sOpenRC %s" VERSION "%s is starting up\n", + printf ("\n %sOpenRC %s" VERSION "%s is starting up\n", ecolor (ECOLOR_GOOD), ecolor (ECOLOR_BRACKET), ecolor (ECOLOR_NORMAL)); @@ -1186,7 +1186,8 @@ int main (int argc, char **argv) i = (strlen ("moused.") + strlen (d->d_name) + 1); tmp = xmalloc (sizeof (char) * i); snprintf (tmp, i, "moused.%s", d->d_name); - if (rc_service_exists (tmp) && rc_service_plugable (tmp)) + if (rc_service_exists (tmp) && + rc_service_plugable (tmp)) rc_service_mark (tmp, RC_SERVICE_COLDPLUGGED); CHAR_FREE (tmp); }