1b47bd987f
Replace first patch (which is not in master after nearly 4 years) with a new set of pending patches to fix the following build failure with gcc >= 7: liboping.c: In function 'ping_set_ttl': liboping.c:207:9: error: '%s' directive output may be truncated writing up to 255 bytes into a region of size 242 [-Werror=format-truncation=] 207 | "%s: %s", function, message); | ^~ ...... 829 | sstrerror (ret, errbuf, sizeof (errbuf))); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ liboping.c:206:2: note: 'snprintf' output between 15 and 270 bytes into a destination of size 256 206 | snprintf (obj->errmsg, sizeof (obj->errmsg), | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 207 | "%s: %s", function, message); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Fixes: - http://autobuild.buildroot.org/results/31083354e9064b2deef86917d67e92a88af0fa46 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
33 lines
1.0 KiB
Diff
33 lines
1.0 KiB
Diff
From 3d685bdb1a6c655bce6d36cfd96e084be07cd2b1 Mon Sep 17 00:00:00 2001
|
|
From: Maurice Smulders <Maurice.Smulders@windtalker.com>
|
|
Date: Tue, 4 Jan 2022 12:49:36 -0700
|
|
Subject: [PATCH] Fix compile error on GCC < 7
|
|
|
|
[Retrieved from:
|
|
https://github.com/octo/liboping/pull/64/commits/3d685bdb1a6c655bce6d36cfd96e084be07cd2b1]
|
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
---
|
|
src/liboping.c | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/src/liboping.c b/src/liboping.c
|
|
index 9fd8f53..1ccf609 100644
|
|
--- a/src/liboping.c
|
|
+++ b/src/liboping.c
|
|
@@ -203,11 +203,15 @@ static char *sstrerror (int errnum, char *buf, size_t buflen)
|
|
static void ping_set_error (pingobj_t *obj, const char *function,
|
|
const char *message)
|
|
{
|
|
+#if __GNUC__ >= 7
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wformat-truncation"
|
|
+#endif
|
|
snprintf (obj->errmsg, sizeof (obj->errmsg),
|
|
"%s: %s", function, message);
|
|
+#if __GNUC__ >= 7
|
|
#pragma GCC diagnostic pop
|
|
+#endif
|
|
obj->errmsg[sizeof (obj->errmsg) - 1] = 0;
|
|
}
|
|
|