X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fprint_ipv6_addr.c;fp=src%2Fprint_ipv6_addr.c;h=fa50ea5791eb4994f3c16ef44dcff99f55c069a7;hb=d52b9f82ca2f1f1e91ac2be812218f9cbdf0459a;hp=8b11e1fbc2dbc479e3b920a1f7efd9f364b2ea9f;hpb=6279964c6b29a549757f59c5a05c9b821a2a4bc5;p=i3%2Fi3status diff --git a/src/print_ipv6_addr.c b/src/print_ipv6_addr.c index 8b11e1f..fa50ea5 100644 --- a/src/print_ipv6_addr.c +++ b/src/print_ipv6_addr.c @@ -123,11 +123,13 @@ void print_ipv6_info(yajl_gen json_gen, char *buffer, const char *format_up, con if (addr_string == NULL) { START_COLOR("color_bad"); - OUTPUT_FULL_TEXT(format_down); + outwalk += sprintf(outwalk, "%s", format_down); END_COLOR; + OUTPUT_FULL_TEXT(buffer); return; } + START_COLOR("color_good"); for (walk = format_up; *walk != '\0'; walk++) { if (*walk != '%') { *(outwalk++) = *walk; @@ -139,7 +141,6 @@ void print_ipv6_info(yajl_gen json_gen, char *buffer, const char *format_up, con walk += strlen("ip"); } } - START_COLOR("color_good"); - OUTPUT_FULL_TEXT(buffer); END_COLOR; + OUTPUT_FULL_TEXT(buffer); }