protocol bump, ignore eintr

This commit is contained in:
Christian Grothoff 2021-11-23 21:39:26 +01:00
parent eb05ba6e34
commit 4599fc2d5e
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC
2 changed files with 4 additions and 3 deletions

View File

@ -548,8 +548,9 @@ lp_expiration_thread (void *cls)
timeout_ms);
if (-1 == ret)
{
GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING,
"poll");
if (EINTR != epoll)
GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING,
"poll");
}
else if (1 == ret)
{

View File

@ -39,7 +39,7 @@
* Which version of the Taler protocol is implemented
* by this library? Used to determine compatibility.
*/
#define EXCHANGE_PROTOCOL_CURRENT 9
#define EXCHANGE_PROTOCOL_CURRENT 10
/**
* How many versions are we backwards compatible with?