]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
[BUILD] fix build breakage with DEBUG_FULL
authorWilly Tarreau <w@1wt.eu>
Tue, 9 Feb 2010 19:55:44 +0000 (20:55 +0100)
committerWilly Tarreau <w@1wt.eu>
Tue, 9 Feb 2010 19:55:44 +0000 (20:55 +0100)
Paul Hirose reported a build error when DEBUG_FULL is set.

src/session.c

index cd521d98f26ed5763333e241117d3a285e84ceec..c05cc8b8ef8d2840820e315e3fff0351e9b5b3eb 100644 (file)
@@ -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 ;