[MINOR] move the response headers to the http_req
diff --git a/src/log.c b/src/log.c
index e25536f..8052816 100644
--- a/src/log.c
+++ b/src/log.c
@@ -368,9 +368,9 @@
 			for (hdr = 0; hdr < fe->nb_rsp_cap; hdr++) {
 				if (hdr)
 					*(h++) = '|';
-				if (s->rsp_cap[hdr] != NULL)
+				if (hreq->rsp.cap[hdr] != NULL)
 					h = encode_string(h, tmpline + sizeof(tmpline) - 4,
-							  '#', hdr_encode_map, s->rsp_cap[hdr]);
+							  '#', hdr_encode_map, hreq->rsp.cap[hdr]);
 			}
 			*(h++) = '}';
 		}