Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion IDMETA
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DEBIAN_DIST="bookworm bullseye"
UBUNTU_DIST="noble jammy focal"
CENTOS_DIST="centos7 centos8 centos9"
VERSION=5.35.0
VERSION=5.35.1
5 changes: 5 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
--- 5.35.1 2025/05/21

daemon keepalive: fix waitpid EINTR handling. This is an old error,
but only seen recently when waitpid started to return EINTR.

--- 5.35.0 2025/05/06

Disable HTTP chunked when encoding HTTP messages.
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## This file is part of the YAZ toolkit.
## Copyright (C) Index Data

YAZ_VERSION_INFO=6:0:1
YAZ_VERSION_INFO=6:1:1

bin_SCRIPTS = yaz-asncomp yaz-config

Expand Down
2 changes: 1 addition & 1 deletion src/daemon.c
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ static void keepalive(void (*work)(void *data), void *data)
/* enable signalling in kill_child_handler */
child_pid = p;

// wait for child to finish and check status
/* wait for child to finish and check status */
while ((p1 = waitpid(p, &status, 0) == (pid_t ) (-1)) && errno == EINTR)
;

Expand Down