From: Florian Forster Date: Sun, 19 Mar 2017 09:47:41 +0000 (+0100) Subject: Merge commit 'refs/pull/18/head' of github.com:octo/liboping X-Git-Url: https://git.tokkee.org/?p=liboping.git;a=commitdiff_plain;h=5bacc4ccaee4b44b1f45b8e589797ba9a4001cba;hp=0e90282ea8abe28840316e26483c39c33841ee96 Merge commit 'refs/pull/18/head' of github.com:octo/liboping Fixes: #17 --- diff --git a/src/oping.c b/src/oping.c index 8c35f3b..de44d08 100644 --- a/src/oping.c +++ b/src/oping.c @@ -1360,10 +1360,11 @@ static int pre_loop_hook (pingobj_t *ping) /* {{{ */ if (has_colors () == TRUE) { start_color (); - init_pair (OPING_GREEN, COLOR_GREEN, /* default = */ 0); - init_pair (OPING_YELLOW, COLOR_YELLOW, /* default = */ 0); - init_pair (OPING_RED, COLOR_RED, /* default = */ 0); - init_pair (OPING_GREEN_HIST, COLOR_GREEN, COLOR_BLACK); + use_default_colors (); + init_pair (OPING_GREEN, COLOR_GREEN, /* default = */ -1); + init_pair (OPING_YELLOW, COLOR_YELLOW, /* default = */ -1); + init_pair (OPING_RED, COLOR_RED, /* default = */ -1); + init_pair (OPING_GREEN_HIST, COLOR_GREEN, -1); init_pair (OPING_YELLOW_HIST, COLOR_YELLOW, COLOR_GREEN); init_pair (OPING_RED_HIST, COLOR_RED, COLOR_YELLOW); }