[BUG] fix wrong timeout computation in event_accept()

In case the incoming socket is set for write and not for read (very
unlikely, except in HEALTH mode), the timeout may remain eternity due
to a copy-paste typo.
diff --git a/src/client.c b/src/client.c
index e887b7c..afba13e 100644
--- a/src/client.c
+++ b/src/client.c
@@ -432,7 +432,7 @@
 			}
 			if (EV_FD_ISSET(cfd, DIR_WR)) {
 				tv_add(&s->rep->wex, &now, &s->fe->clitimeout);
-				t->expire = s->req->rex;
+				t->expire = s->rep->wex;
 			}
 		}