diff options
author | Erich Eckner <git@eckner.net> | 2022-09-11 14:02:48 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2022-09-11 21:21:43 +0200 |
commit | 12d40f83e26ff12f4da5ce578c2934783bcd3850 (patch) | |
tree | 7f80a45b0cc577c16382b8ece622df9f66a68a02 /liboping/format.patch | |
parent | 35e4269f65e5272f7b53929963f890eee7a31caf (diff) | |
download | archlinuxewe-12d40f83e26ff12f4da5ce578c2934783bcd3850.tar.xz |
liboping new
Diffstat (limited to 'liboping/format.patch')
-rw-r--r-- | liboping/format.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/liboping/format.patch b/liboping/format.patch new file mode 100644 index 000000000..cc0b99e05 --- /dev/null +++ b/liboping/format.patch @@ -0,0 +1,30 @@ +--- liboping-1.10.0-old/src/oping.c 2017-05-11 15:32:27.000000000 +0800 ++++ liboping-1.10.0/src/oping.c 2022-03-14 16:36:47.476525817 +0800 +@@ -1125,7 +1125,7 @@ + wattron (ctx->window, COLOR_PAIR(color)); + + if (has_utf8()) +- mvwprintw (ctx->window, /* y = */ 3, /* x = */ x + 2, symbol); ++ mvwprintw (ctx->window, /* y = */ 3, /* x = */ x + 2, "%s", symbol); + else + mvwaddch (ctx->window, /* y = */ 3, /* x = */ x + 2, symbolc); + +@@ -1223,7 +1223,7 @@ + mvwaddch (ctx->window, /* y = */ 3, /* x = */ x + 2, ' '); + else if (has_utf8 ()) + mvwprintw (ctx->window, /* y = */ 3, /* x = */ x + 2, +- hist_symbols_utf8[index]); ++ "%s", hist_symbols_utf8[index]); + else + mvwaddch (ctx->window, /* y = */ 3, /* x = */ x + 2, + hist_symbols_acs[index] | A_ALTCHARSET); +@@ -1600,8 +1600,7 @@ + + HOST_PRINTF ("%zu bytes from %s (%s): icmp_seq=%u ttl=%i ", + data_len, context->host, context->addr, +- sequence, recv_ttl, +- format_qos (recv_qos, recv_qos_str, sizeof (recv_qos_str))); ++ sequence, recv_ttl); + if ((recv_qos != 0) || (opt_send_qos != 0)) + { + HOST_PRINTF ("qos=%s ", |