From b4a18fae4fed748f8e726e1bd3adfacb2a99b67c Mon Sep 17 00:00:00 2001 From: mglae Date: Sun, 7 Feb 2021 14:37:19 +0100 Subject: [PATCH] connman: update to 1.39 --- packages/network/connman/package.mk | 4 ++-- .../patches/connman-06-timeserver_fix_warning.patch | 11 +++++++++++ 2 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 packages/network/connman/patches/connman-06-timeserver_fix_warning.patch diff --git a/packages/network/connman/package.mk b/packages/network/connman/package.mk index 7c8a3cf9e0..2bfe83155b 100644 --- a/packages/network/connman/package.mk +++ b/packages/network/connman/package.mk @@ -3,8 +3,8 @@ # Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv) PKG_NAME="connman" -PKG_VERSION="40947be3848b0a864a366f8d67ce347265ea98c4" # 1.38 + HEAD 12/12/20 -PKG_SHA256="d59e93caf297f0ad8d2034fcf956747ba879266e2ad9b7e42abcce86867083e6" +PKG_VERSION="1.39" +PKG_SHA256="0366881f73cdb0acb14619b58cf7a452fe5bf05a70f9db84519933b3afb9744c" PKG_LICENSE="GPL" PKG_SITE="http://www.connman.net" PKG_URL="https://git.kernel.org/pub/scm/network/connman/connman.git/snapshot/connman-${PKG_VERSION}.tar.gz" diff --git a/packages/network/connman/patches/connman-06-timeserver_fix_warning.patch b/packages/network/connman/patches/connman-06-timeserver_fix_warning.patch new file mode 100644 index 0000000000..073c3857a5 --- /dev/null +++ b/packages/network/connman/patches/connman-06-timeserver_fix_warning.patch @@ -0,0 +1,11 @@ +--- a/src/timeserver.c 2021-02-05 19:46:42.000000000 +0100 ++++ b/src/timeserver.c 2021-02-06 15:08:10.777408574 +0100 +@@ -66,7 +66,7 @@ static void ntp_callback(bool success, v + return; + } + +- if (!gettimeofday(&tv, NULL)) { ++ if (gettimeofday(&tv, NULL)) { + connman_warn("Failed to get current time"); + } +