commit | f714fb533e2c9d0014a3bb035d92676cb48a3ddd | [log] [tgz] |
---|---|---|
author | Erwan Velu <erwan@redhat.com> | Tue Aug 30 11:48:44 2016 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Tue Aug 30 14:24:48 2016 +0200 |
tree | 37f05578ab23ab834e1a0410c6e085b0010856b2 | |
parent | b12ff9a2013770b76c4b9f84d9abe672bad6d5b5 [diff] |
CLEANUP: dumpstats: Removing useless variables allocation In dump_servers_state(), srv_time_since_last_change, bk_f_forced_id, srv_f_forced_id variables were firstly set to zero and immediately reassigned to another value while never been accessed in between. Sounds like a useless initiazation. So let's make only the useful allocation.