From f1646a867f90ec81c66721ad335be945f47dee0a Mon Sep 17 00:00:00 2001 From: dbj Date: Mon, 3 May 2004 21:11:30 +0000 Subject: [PATCH] correct cl's previous flow control fix so that flow control checks for a pause any time there isn't a write lock --- gnu/dist/cvs/src/recurse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/dist/cvs/src/recurse.c b/gnu/dist/cvs/src/recurse.c index a96a27665fa9..15b91c642bf2 100644 --- a/gnu/dist/cvs/src/recurse.c +++ b/gnu/dist/cvs/src/recurse.c @@ -566,7 +566,7 @@ do_recursion (frame) * generating data, to give the buffers a chance to drain to the * remote client. We should not have locks active at this point, * but if there are writelocks around, we cannot pause here. */ - if (server_active && locktype == CVS_LOCK_NONE) + if (server_active && locktype != CVS_LOCK_WRITE) server_pause_check(); #endif