From b2a00dacb0caf9f49ef32de6f7a5b3dc53623718 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Mon, 24 Jun 2024 14:42:36 -0700 Subject: [PATCH] apinger: fix time_t format Needs to be 64-bit. Signed-off-by: Rosen Penev --- net/apinger/Makefile | 2 +- net/apinger/patches/050-statusformat.patch | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/net/apinger/Makefile b/net/apinger/Makefile index e37a9b3e5d..85013f824d 100644 --- a/net/apinger/Makefile +++ b/net/apinger/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=apinger PKG_SOURCE_DATE:=2015-04-09 PKG_SOURCE_VERSION:=78eb328721ba1a10571c19df95acddcb5f0c17c8 -PKG_RELEASE:=7 +PKG_RELEASE:=8 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://github.com/Jajcus/apinger diff --git a/net/apinger/patches/050-statusformat.patch b/net/apinger/patches/050-statusformat.patch index dee865b8ac..e835bfb1e2 100644 --- a/net/apinger/patches/050-statusformat.patch +++ b/net/apinger/patches/050-statusformat.patch @@ -14,8 +14,8 @@ - ctime(&t->last_received_tv.tv_sec)); - fprintf(f,"Average delay: %0.3fms\n",AVG_DELAY(t)); + if(config->status_format){ -+ fprintf(f,"%s|%s|%s|%i|%i|%u|",t->name, t->config->srcip, t->description, t->last_sent+1, -+ t->received, t->last_received_tv.tv_sec); ++ fprintf(f,"%s|%s|%s|%i|%i|%" PRIu64 "|",t->name, t->config->srcip, t->description, t->last_sent+1, ++ t->received, (uint64_t)t->last_received_tv.tv_sec); + fprintf(f,"%0.3fms|", AVG_DELAY(t)); + } + else{ -- 2.30.2