summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: aac3188)
raw | patch | inline | side by side (parent: aac3188)
author | Florian Forster <ff@octo.it> | |
Thu, 20 Nov 2014 11:03:56 +0000 (12:03 +0100) | ||
committer | Florian Forster <ff@octo.it> | |
Thu, 20 Nov 2014 11:03:56 +0000 (12:03 +0100) |
src/oping.c | patch | blob | history |
diff --git a/src/oping.c b/src/oping.c
index 79afb5f55a47f8a32f3d0c0f50e9d9eee59f3121..3e735ffde1271c09a00eaefb25984ed497948cc8 100644 (file)
--- a/src/oping.c
+++ b/src/oping.c
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);