Commit a37dddae authored by Ruediger Pluem's avatar Ruediger Pluem
Browse files

Merge r1808671 from trunk:

* Correctly dump pools that have no tag
Submitted by: rpluem


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1811295 13f79535-47bb-0310-9956-ffa450edef68
parent ed5e24d1
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -404,7 +404,13 @@ define dump_one_pool
            set $done = 1
        end
    end
    printf "Pool '%s' [%p]: %d/%d free (%d blocks)\n", $p->tag, $p, $free, $size, $nodes
    printf "Pool '"
    if $p->tag
        printf "%s", $p->tag
    else
        printf "no tag"
    end
    printf "' [%p]: %d/%d free (%d blocks)\n", $p, $free, $size, $nodes
end

# Set sane defaults for common signals: