diff options
author | Roy Marples <roy@marples.name> | 2008-01-05 20:43:32 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-01-05 20:43:32 +0000 |
commit | e6c9bdf2a30d84e35b783146ebe36314b4269ffb (patch) | |
tree | f9a3d84e4e70ae56a8d6b56d30fa4425cea1154c /src/rc/rc.c | |
parent | c92be49041a7b56f651a93e71e15e94bc8727489 (diff) |
Add the missing changes from the recent Makefile updates
Diffstat (limited to 'src/rc/rc.c')
-rw-r--r-- | src/rc/rc.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/rc/rc.c b/src/rc/rc.c index a33b6dcf..cbb9a152 100644 --- a/src/rc/rc.c +++ b/src/rc/rc.c @@ -59,12 +59,12 @@ const char rc_copyright[] = "Copyright (c) 2007-2008 Roy Marples"; #include <unistd.h> #include "builtins.h" -#include "einfo.h" +#include "../libeinfo/einfo.h" #include "rc.h" #include "rc-logger.h" -#include "rc-misc.h" +#include "../rc-misc.h" #include "rc-plugin.h" -#include "strlist.h" +#include "../strlist.h" #include "version.h" @@ -1063,14 +1063,13 @@ int main (int argc, char **argv) run_script (INITEARLYSH); uname (&uts); - printf ("\n %sOpenRC %s" VERSION "%s is starting up %s", + printf ("\n %sOpenRC %s" VERSION "%s is starting up %s\n\n", #ifdef BRANDING BRANDING #else "" #endif - "\n\n", - ecolor (ECOLOR_GOOD), ecolor (ECOLOR_HILITE), + , ecolor (ECOLOR_GOOD), ecolor (ECOLOR_HILITE), ecolor (ECOLOR_NORMAL)); if (! rc_yesno (getenv ("EINFO_QUIET")) && |