From 69effac5b07837f384ae677bae48969554a6e777 Mon Sep 17 00:00:00 2001 From: Artem Prilutskiy Date: Wed, 7 Jun 2017 16:41:59 +0300 Subject: [PATCH] Fixes --- RewindClient.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RewindClient.c b/RewindClient.c index 6b25e8c..5592294 100644 --- a/RewindClient.c +++ b/RewindClient.c @@ -300,7 +300,7 @@ int WaitForRewindSessionEnd(struct RewindContext* context, struct RewindSessionP struct timeval threshold; gettimeofday(&now, NULL); - threshold.tv_sec = now.tv_sec + CONNECT_TIMEOUT; + threshold.tv_sec = now.tv_sec + interval; threshold.tv_usec = now.tv_usec; while (timercmp(&now, &threshold, <))