commit | df39e955c043f6cc89424ad410ee1dcbdf4b40ac | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Tue Aug 10 11:11:40 2010 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Tue Aug 10 18:04:16 2010 +0200 |
tree | b90deb77a587f03c732babe7fd2d28a14c545c32 | |
parent | 0a4838cd31cd3dbb1078f78061a532ad0e519f3b [diff] |
[CLEANUP] stats: use stksess_kill() to remove table entries Using it will be more reliable in the long term as we'll only have to modify stksess_kill() if we want to extend the tables.
diff --git a/src/dumpstats.c b/src/dumpstats.c index a6ce0cf..526e0f5 100644 --- a/src/dumpstats.c +++ b/src/dumpstats.c
@@ -546,10 +546,7 @@ return 1; } - eb32_delete(&ts->exp); - ebmb_delete(&ts->key); - stksess_free(&px->table, ts); - + stksess_kill(&px->table, ts); /* end of processing */ return 1; }