From: Rosen Penev Date: Mon, 24 Jun 2024 21:42:36 +0000 (-0700) Subject: apinger: fix time_t format X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=b2a00dacb0caf9f49ef32de6f7a5b3dc53623718;p=feed%2Fpackages.git apinger: fix time_t format Needs to be 64-bit. Signed-off-by: Rosen Penev --- 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{