=over 4
-=item B<Location> I<http://example.com/collectd-import>
+=item B<URL> I<http://example.com/collectd-import>
Set the URL location where values will be sent.
*/
static const char *config_keys[] =
{
- "Location", "User", "Password"
+ "URL", "User", "Password"
};
static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
static int http_config (const char *key, const char *value) /* {{{ */
{
- if (strcasecmp ("Location", key) == 0)
+ if (strcasecmp ("URL", key) == 0)
{
if (location != NULL)
free (location);