diff options
author | Michael Stapelberg <stapelberg@users.noreply.github.com> | 2015-08-06 18:18:19 +0200 |
---|---|---|
committer | Michael Stapelberg <stapelberg@users.noreply.github.com> | 2015-08-06 18:18:19 +0200 |
commit | 6d634b1b675f2e567daa05b6580d2d5b451a02a7 (patch) | |
tree | 4da576ce5f15d9405bdfb73aebab4686208d0f2f /src | |
parent | 57c3fb36299bbd6d6c6682d90abcb840532ce486 (diff) | |
parent | 9b238a8d65c5fd444422a3f32ce98b6631c88377 (diff) |
Merge pull request #50 from czarkoff/no_ip
Use "color_degraded" when interface has no IP
Diffstat (limited to 'src')
-rw-r--r-- | src/print_eth_info.c | 5 | ||||
-rw-r--r-- | src/print_wireless_info.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/print_eth_info.c b/src/print_eth_info.c index 06a1613..e2326b5 100644 --- a/src/print_eth_info.c +++ b/src/print_eth_info.c @@ -126,7 +126,10 @@ void print_eth_info(yajl_gen json_gen, char *buffer, const char *interface, cons goto out; } - START_COLOR("color_good"); + if (BEGINS_WITH(ip_address, "no IP")) + START_COLOR("color_degraded"); + else + START_COLOR("color_good"); for (walk = format_up; *walk != '\0'; walk++) { if (*walk != '%') { diff --git a/src/print_wireless_info.c b/src/print_wireless_info.c index 8b390ab..83c717e 100644 --- a/src/print_wireless_info.c +++ b/src/print_wireless_info.c @@ -342,7 +342,7 @@ void print_wireless_info(yajl_gen json_gen, char *buffer, const char *interface, if (info.flags & WIRELESS_INFO_FLAG_HAS_QUALITY) START_COLOR((info.quality < info.quality_average ? "color_degraded" : "color_good")); else - START_COLOR("color_good"); + START_COLOR((BEGINS_WITH(ip_address, "no IP") ? "color_degraded" : "color_good")); } else { walk = format_down; START_COLOR("color_bad"); |