diff options
author | Trent Piepho <tpiepho@impinj.com> | 2018-07-26 16:33:20 -0700 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-07-27 09:22:08 +0200 |
commit | 7417daf0eb0c056b5750c8192c5de0b35a7a70e6 (patch) | |
tree | 9bb328915b5cee3cd720aad3cd0a4060d0321808 /package/lttng-tools/0003-Fix-warning-src-bin-lttng-utils.c-cast-incompatible-.patch | |
parent | dda7a906248e7bed53055797222c69b449f02c47 (diff) | |
download | buildroot-7417daf0eb0c056b5750c8192c5de0b35a7a70e6.tar.gz buildroot-7417daf0eb0c056b5750c8192c5de0b35a7a70e6.zip |
lttng-tools: bump to version 2.10.4
Remove patches now present upstream and drop no longer needed
autoreconf.
Signed-off-by: Trent Piepho <tpiepho@impinj.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'package/lttng-tools/0003-Fix-warning-src-bin-lttng-utils.c-cast-incompatible-.patch')
-rw-r--r-- | package/lttng-tools/0003-Fix-warning-src-bin-lttng-utils.c-cast-incompatible-.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/package/lttng-tools/0003-Fix-warning-src-bin-lttng-utils.c-cast-incompatible-.patch b/package/lttng-tools/0003-Fix-warning-src-bin-lttng-utils.c-cast-incompatible-.patch deleted file mode 100644 index b353b8f48a..0000000000 --- a/package/lttng-tools/0003-Fix-warning-src-bin-lttng-utils.c-cast-incompatible-.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 56efeab366da412ee4196107c08174f32ed83c9a Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Galarneau?= - <jeremie.galarneau@efficios.com> -Date: Mon, 13 Nov 2017 10:31:29 -0500 -Subject: [PATCH] Fix warning: src/bin/lttng/utils.c: cast incompatible pointer -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Reported-by: Philippe Proulx <eeppeliteloop@gmail.com> -[Philippe: backport from upstream commit 56efeab3] -Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com> ---- - src/bin/lttng/utils.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/bin/lttng/utils.c b/src/bin/lttng/utils.c -index 885f498b..52a2440e 100644 ---- a/src/bin/lttng/utils.c -+++ b/src/bin/lttng/utils.c -@@ -387,7 +387,7 @@ int check_relayd(void) - * A successful connect means the relayd exists thus returning 0 else a - * negative value means it does NOT exists. - */ -- ret = connect(fd, &sin, sizeof(sin)); -+ ret = connect(fd, (struct sockaddr *) &sin, sizeof(sin)); - if (ret < 0) { - /* Not found. */ - ret = 0; --- -2.15.0 - |