CLEANUP: dumpstats: Removing useless variables allocation
authorErwan Velu <erwan@redhat.com>
Tue, 30 Aug 2016 09:48:44 +0000 (11:48 +0200)
committerWilly Tarreau <w@1wt.eu>
Tue, 30 Aug 2016 12:24:48 +0000 (14:24 +0200)
commitf714fb533e2c9d0014a3bb035d92676cb48a3ddd
tree37f05578ab23ab834e1a0410c6e085b0010856b2
parentb12ff9a2013770b76c4b9f84d9abe672bad6d5b5
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.
src/dumpstats.c