summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e44afcf)
raw | patch | inline | side by side (parent: e44afcf)
author | Florian Forster <octo@collectd.org> | |
Mon, 9 Jul 2012 05:48:40 +0000 (07:48 +0200) | ||
committer | Florian Forster <octo@collectd.org> | |
Mon, 9 Jul 2012 05:48:40 +0000 (07:48 +0200) |
src/redis.c | patch | blob | history |
diff --git a/src/redis.c b/src/redis.c
index 9d26828eee03d35f45d049ca96696192a7fd5dda..4f4b33bb562a540cb550c599e030dac17dac11bb 100644 (file)
--- a/src/redis.c
+++ b/src/redis.c
}
else if (strcasecmp ("Timeout", option->key) == 0)
status = cf_util_get_int (option, &rn.timeout);
- else if (strcasecmp ("Passwd", option->key) == 0)
+ else if (strcasecmp ("Password", option->key) == 0)
status = cf_util_get_string_buffer (option, rn.passwd, sizeof (rn.passwd));
else
WARNING ("redis plugin: Option `%s' not allowed inside a `Node' "
continue;
}
- if ( strlen(rn->passwd) > 0 ) {
+ if (strlen (rn->passwd) > 0)
+ {
DEBUG ("redis plugin: authenticanting node `%s' passwd(%s).", rn->name, rn->passwd);
- if ( credis_auth(rh, rn->passwd) != 0 )
+ status = credis_auth(rh, rn->passwd);
+ if (status != 0)
{
WARNING ("redis plugin: unable to authenticate on node `%s'.", rn->name);
credis_close (rh);