diff options
author | Fernando Tarlá Cardoso Lemos <fernandotcl@gmail.com> | 2010-06-29 20:59:03 -0300 |
---|---|---|
committer | Michael Stapelberg <michael@stapelberg.de> | 2010-07-04 21:52:43 +0200 |
commit | 38337511e9b5896006f276c111265c985b2af70d (patch) | |
tree | 0edd30656e1a336129a70f05b03ba6ba3b5c8968 /src/print_eth_info.c | |
parent | 570bc669b4ad3c268025b70b217280788f6e23ba (diff) |
Support customized colors.
Diffstat (limited to 'src/print_eth_info.c')
-rw-r--r-- | src/print_eth_info.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/print_eth_info.c b/src/print_eth_info.c index 9ad9b92..28ba6c1 100644 --- a/src/print_eth_info.c +++ b/src/print_eth_info.c @@ -79,12 +79,12 @@ void print_eth_info(const char *interface, const char *format_up, const char *fo const char *ip_address = get_ip_addr(interface); if (ip_address == NULL) { - printf("%s", color("#FF0000")); + printf("%s", color("color_bad")); printf("%s", format_down); (void)printf("%s", endcolor()); return; } else { - printf("%s", color("#00FF00")); + printf("%s", color("color_good")); } for (walk = format_up; *walk != '\0'; walk++) { |