Skip to content

Commit bc39289

Browse files
committed
python-meshtastic v2.6.3
1 parent 79b765f commit bc39289

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
--- a/src/u_websocket.c
2+
+++ b/src/u_websocket.c
3+
@@ -2312,7 +2312,7 @@ int ulfius_websocket_wait_close(struct _websocket_manager * websocket_manager, u
4+
if (timeout) {
5+
clock_gettime(CLOCK_REALTIME, &abstime);
6+
abstime.tv_sec += ((time_t)timeout / 1000);
7+
- abstime.tv_nsec += (((time_t)timeout%1000) * 1000000);
8+
+ abstime.tv_nsec += ((((long int)timeout)%1000) * 1000000);
9+
if (abstime.tv_nsec > 999999999) {
10+
abstime.tv_nsec %= 1000000000;
11+
abstime.tv_sec ++;

python-meshtastic/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ include $(TOPDIR)/rules.mk
66

77
PKG_NAME:=python-meshtastic
88
# TODO renovate
9-
PKG_VERSION:=2.6.1
9+
PKG_VERSION:=2.6.3
1010
PKG_RELEASE:=1
1111

1212
PYPI_NAME:=meshtastic
1313
# TODO renovate?
14-
PKG_HASH:=70b1a6fd6d9119708a76605e391797a567ab2b5d05596cd5f0fd6443da5624ac
14+
PKG_HASH:=6891b84d1d9f47962a33989524a992b9162f928a7dfebd3b9c675b8f1619f35b
1515

1616
PKG_MAINTAINER:=Austin Lane <vidplace7@gmail.com>
1717
PKG_LICENSE:=GPL-3.0

0 commit comments

Comments
 (0)