From 2e2b3eb65afc32de5a50415d62831eaf773aeb49 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Tue, 9 Feb 2010 20:55:44 +0100 Subject: [PATCH] [BUILD] fix build breakage with DEBUG_FULL Paul Hirose reported a build error when DEBUG_FULL is set. --- src/session.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/session.c b/src/session.c index cd521d98f..c05cc8b8e 100644 --- a/src/session.c +++ b/src/session.c @@ -736,11 +736,11 @@ int process_store_rules(struct session *s, struct buffer *rep, int an_bit) DPRINTF(stderr,"[%u] %s: session=%p b=%p, exp(r,w)=%u,%u bf=%08x bl=%d analysers=%02x\n", now_ms, __FUNCTION__, s, - req, - req->rex, req->wex, - req->flags, - req->l, - req->analysers); + rep, + rep->rex, rep->wex, + rep->flags, + rep->l, + rep->analysers); list_for_each_entry(rule, &px->storersp_rules, list) { int ret = 1 ;