From: Florian Forster Date: Tue, 21 Jul 2009 06:45:03 +0000 (+0200) Subject: freeswitch plugin: Rename the `Pass' option to `Password'. X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=60a26b69d9c8ab2f3173e5c1d3009aaa47d4282f freeswitch plugin: Rename the `Pass' option to `Password'. `Password' is used by all the other plugins. --- diff --git a/src/freeswitch.c b/src/freeswitch.c index b47c287b..b4e40ea0 100644 --- a/src/freeswitch.c +++ b/src/freeswitch.c @@ -35,7 +35,7 @@ * * Host "127.0.0.1" * Port "8021" - * Pass "ClueCon" + * Password "ClueCon" * * Instance "profile-sofia-res-public" * @@ -371,7 +371,7 @@ static int fs_complex_config (oconfig_item_t *ci) if (fs_port != NULL) free (fs_port); fs_port = strdup(child->values[0].value.string); } - else if (strcasecmp ("Pass", child->key) == 0) + else if (strcasecmp ("Password", child->key) == 0) { if (fs_pass != NULL) free (fs_pass); fs_pass = strdup(child->values[0].value.string);