From 7c028a4a47f8f4b341cca30a193265f4f0d7ff98 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Wed, 15 Apr 2009 10:46:23 +0200 Subject: [PATCH] apache plugin: Fix whitespace: Indent using tab, remove trailing. --- src/apache.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/apache.c b/src/apache.c index c71275cd..b808a9ee 100644 --- a/src/apache.c +++ b/src/apache.c @@ -119,19 +119,19 @@ static size_t apache_curl_callback (void *buf, size_t size, size_t nmemb, * * URL ... * - */ + */ static int config_set_string (char **ret_string, oconfig_item_t *ci) { char *string; if ((ci->values_num != 1) - || (ci->values[0].type != OCONFIG_TYPE_STRING)) - { - WARNING ("apache plugin: The `%s' config option " - "needs exactly one string argument.", ci->key); - return (-1); - } + || (ci->values[0].type != OCONFIG_TYPE_STRING)) + { + WARNING ("apache plugin: The `%s' config option " + "needs exactly one string argument.", ci->key); + return (-1); + } string = strdup (ci->values[0].value.string); if (string == NULL) -- 2.11.0