This commit is contained in:
Michael Jerris
2012-09-24 15:38:06 -04:00
parent d565fdece5
commit 4ff9b2f102
7 changed files with 17 additions and 55 deletions

View File

@@ -931,17 +931,17 @@ static void print_banner(FILE *stream)
WriteFile(hStdout, banner, (DWORD) strlen(banner), NULL, NULL);
WriteFile(hStdout, cc, (DWORD) strlen(cc), NULL, NULL);
SetConsoleTextAttribute(hStdout, wOldColorAttrs);
/* Print the rest info in default colors */
fprintf(stream, "\n%s\n", inf);
#elif SHOW_HUGE_CLUECON_NAG
fprintf(stream, "%s%s%s%s%s%s\n%s\n",
#else
fprintf(stream,
"%s%s%s%s%s%s\n%s\n",
ESL_SEQ_DEFAULT_COLOR,
ESL_SEQ_FYELLOW, ESL_SEQ_BBLUE,
banner,
cc, ESL_SEQ_DEFAULT_COLOR, inf);
fprintf(stream, "%s", output_text_color);
#else
fprintf(stream, "%s%s%s\n%s\n", ESL_SEQ_DEFAULT_COLOR, banner, cc, inf);
fprintf(stream, "%s", output_text_color);
#endif
}