From 549064e21ce99efb8d93083a936dd4adebf3f839 Mon Sep 17 00:00:00 2001 From: Jakub Jankowski Date: Tue, 6 Nov 2018 00:33:26 +0100 Subject: [PATCH] curl plugin: re-format --- src/curl.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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) -- 2.11.0