From 60a26b69d9c8ab2f3173e5c1d3009aaa47d4282f Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Tue, 21 Jul 2009 08:45:03 +0200 Subject: [PATCH] freeswitch plugin: Rename the `Pass' option to `Password'. `Password' is used by all the other plugins. --- src/freeswitch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.11.0