From: Willy Tarreau Date: Tue, 9 Feb 2010 19:55:44 +0000 (+0100) Subject: [BUILD] fix build breakage with DEBUG_FULL X-Git-Tag: v1.4.0~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e2b3eb65afc32de5a50415d62831eaf773aeb49;p=thirdparty%2Fhaproxy.git [BUILD] fix build breakage with DEBUG_FULL Paul Hirose reported a build error when DEBUG_FULL is set. --- diff --git a/src/session.c b/src/session.c index cd521d98f2..c05cc8b8ef 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 ;