Skip to content

Commit

Permalink
Make the version announcement on boot less flashy
Browse files Browse the repository at this point in the history
  • Loading branch information
Subsentient committed Mar 18, 2015
1 parent 8123b37 commit badf2a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/actions.c
Expand Up @@ -713,7 +713,7 @@ void LaunchBootup(void)

setsid();

printf("\n%s\nCompiled %s\n\n", VERSIONSTRING, __DATE__ " " __TIME__);
puts("--- " VERSIONSTRING " ---");

/*Set environment variables.*/
setenv("USER", ENVVAR_USER, true);
Expand Down
4 changes: 2 additions & 2 deletions src/console.c
Expand Up @@ -75,11 +75,11 @@ void PrintBootBanner(void)

if (*BootBanner.BannerColor)
{
printf("%s%s%s\n\n", BootBanner.BannerColor, BootBanner.BannerText, CONSOLE_ENDCOLOR);
printf("\n%s%s%s\n\n", BootBanner.BannerColor, BootBanner.BannerText, CONSOLE_ENDCOLOR);
}
else
{
printf("%s\n\n", BootBanner.BannerText);
printf("\n%s\n\n", BootBanner.BannerText);
}
}

Expand Down

0 comments on commit badf2a0

Please sign in to comment.