From: Florian Forster Date: Thu, 20 Nov 2014 11:03:56 +0000 (+0100) Subject: src/oping.c: Change the order of graphs. X-Git-Tag: liboping-1.8.0~4 X-Git-Url: https://git.tokkee.org/?p=liboping.git;a=commitdiff_plain;h=d1c9f8feddf4cc174378d822ed1dc93f0d3fa03c src/oping.c: Change the order of graphs. --- diff --git a/src/oping.c b/src/oping.c index 79afb5f..3e735ff 100644 --- a/src/oping.c +++ b/src/oping.c @@ -732,9 +732,9 @@ static int read_options (int argc, char **argv) /* {{{ */ opt_show_graph = 0; else if (strcasecmp ("prettyping", optarg) == 0) opt_show_graph = 1; - else if (strcasecmp ("boxplot", optarg) == 0) - opt_show_graph = 2; else if (strcasecmp ("histogram", optarg) == 0) + opt_show_graph = 2; + else if (strcasecmp ("boxplot", optarg) == 0) opt_show_graph = 3; else fprintf (stderr, "Unknown graph option: %s\n", optarg); @@ -1203,9 +1203,9 @@ static int update_stats_from_context (ping_context_t *ctx, pingobj_iter_t *iter) if (opt_show_graph == 1) update_graph_prettyping (ctx, latency, sequence); else if (opt_show_graph == 2) - update_graph_boxplot (ctx); - else if (opt_show_graph == 3) update_graph_histogram (ctx); + else if (opt_show_graph == 3) + update_graph_boxplot (ctx); wrefresh (ctx->window);