protocol bump, ignore eintr
This commit is contained in:
parent
eb05ba6e34
commit
4599fc2d5e
@ -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)
|
||||
{
|
||||
|
@ -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?
|
||||
|
Loading…
Reference in New Issue
Block a user