[collectd] [PATCH] ping: cleanup used variable names
Stefan Völkel
bd at bc-bd.org
Wed Dec 9 19:42:40 CET 2009
---
src/ping.c | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/ping.c b/src/ping.c
index f5cb5f6..2a2facf 100644
--- a/src/ping.c
+++ b/src/ping.c
@@ -139,7 +139,7 @@ static void *ping_thread (void *arg) /* {{{ */
struct timespec ts_int;
hostlist_t *hl;
- int status;
+ int count;
pthread_mutex_lock (&ping_lock);
@@ -156,18 +156,18 @@ static void *ping_thread (void *arg) /* {{{ */
ping_setopt (pingobj, PING_OPT_TTL, (void *) &ping_ttl);
/* Add all the hosts to the ping object. */
- status = 0;
+ count = 0;
for (hl = hostlist_head; hl != NULL; hl = hl->next)
{
- int tmp_status;
- tmp_status = ping_host_add (pingobj, hl->host);
- if (tmp_status != 0)
+ int status;
+ status = ping_host_add (pingobj, hl->host);
+ if (status != 0)
WARNING ("ping plugin: ping_host_add (%s) failed.", hl->host);
else
- status++;
+ count++;
}
- if (status == 0)
+ if (count == 0)
{
ERROR ("ping plugin: No host could be added to ping object. Giving up.");
ping_thread_error = 1;
--
1.6.3.3
More information about the collectd
mailing list