From 50e27cf3d83a17efe7d6ee7515d00716593a2a51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Wed, 24 Sep 2014 18:59:55 +0200 Subject: [PATCH] Order the results by port --- ponymap.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/ponymap.c b/ponymap.c index 303654a..5fc486a 100644 --- a/ponymap.c +++ b/ponymap.c @@ -1405,12 +1405,14 @@ target_dump_terminal (struct target *self, struct target_dump_data *data) } static int -unit_cmp_by_group (const void *ax, const void *bx) +unit_cmp_by_order (const void *ax, const void *bx) { const struct unit **ay = (void *) ax, **by = (void *) bx; const struct unit *a = *ay, *b = *by; int x = strcmp (a->service->name, b->service->name); - return x ? x : strcmp (a->transport->name, b->transport->name); + if (!x) x = strcmp (a->transport->name, b->transport->name); + if (!x) x = (int) a->port - (int) b->port; + return x; } static void @@ -1431,7 +1433,7 @@ target_dump_results (struct target *self) sorted[--len] = iter; // Sort them by service name so that they can be grouped - qsort (sorted, N_ELEMENTS (sorted), sizeof *sorted, unit_cmp_by_group); + qsort (sorted, N_ELEMENTS (sorted), sizeof *sorted, unit_cmp_by_order); if (ctx->json_results) target_dump_json (self, &data);