From: Jakub Jankowski Date: Mon, 5 Nov 2018 23:33:26 +0000 (+0100) Subject: curl plugin: re-format X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=549064e21ce99efb8d93083a936dd4adebf3f839 curl plugin: re-format --- diff --git a/src/curl.c b/src/curl.c index 950e30b7..292b165f 100644 --- a/src/curl.c +++ b/src/curl.c @@ -445,7 +445,8 @@ static int cc_config_add_page(oconfig_item_t *ci) /* {{{ */ status = cf_util_get_string(child, &af); if (status != 0 || af == NULL) { WARNING("curl plugin: Cannot parse value of `%s' " - "for instance `%s'.", child->key, page->instance); + "for instance `%s'.", + child->key, page->instance); } else if (strcasecmp("any", af) == 0) { page->address_family = CURL_IPRESOLVE_WHATEVER; } else if (strcasecmp("ipv4", af) == 0) { @@ -462,7 +463,8 @@ static int cc_config_add_page(oconfig_item_t *ci) /* {{{ */ "Using fallback `any'."); } else { WARNING("curl plugin: Unsupported value of `%s' " - "for instance `%s'.", child->key, page->instance); + "for instance `%s'.", + child->key, page->instance); status = -1; } } else if (strcasecmp("User", child->key) == 0)