From 5cc908e28b222546112f9793070d35e531fde29f Mon Sep 17 00:00:00 2001 From: Daniel O'Connor Date: Mon, 21 May 2012 12:21:19 +0930 Subject: [PATCH] Missed a timeout -> dnatimeout rename. --- client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client.c b/client.c index 805f486b..502fa7dc 100644 --- a/client.c +++ b/client.c @@ -214,9 +214,9 @@ int packetSendRequest(int method,unsigned char *packet,int packet_len,int batchP } cumulative_timeout+=this_timeout; } - if (debug&DEBUG_DNARESPONSES) if (cumulative_timeout>=timeout) + if (debug&DEBUG_DNARESPONSES) if (cumulative_timeout>=dnatimeout) fprintf(stderr,"Request timed out after retries (timeout=%d, elapsed=%d).\n", - timeout,cumulative_timeout); + dnatimeout,cumulative_timeout); return 0; }