aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/plugins/curl
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2009-09-04 14:50:23 +0200
committerMartin Willi <martin@strongswan.org>2009-09-04 14:50:23 +0200
commit323f9f990fb28583bfaaaad04f9934c0f0e62052 (patch)
tree99a9f789388077bd6b2d51516d45b5d0112e3c9c /src/libstrongswan/plugins/curl
parent7daf5226b74e14a6e0f1a888b0be26f3d246f9f8 (diff)
downloadstrongswan-323f9f990fb28583bfaaaad04f9934c0f0e62052.tar.bz2
strongswan-323f9f990fb28583bfaaaad04f9934c0f0e62052.tar.xz
replaces four spaces by tabs, where appropriate
Diffstat (limited to 'src/libstrongswan/plugins/curl')
-rw-r--r--src/libstrongswan/plugins/curl/curl_fetcher.c2
-rw-r--r--src/libstrongswan/plugins/curl/curl_fetcher.h6
-rw-r--r--src/libstrongswan/plugins/curl/curl_plugin.c10
3 files changed, 9 insertions, 9 deletions
diff --git a/src/libstrongswan/plugins/curl/curl_fetcher.c b/src/libstrongswan/plugins/curl/curl_fetcher.c
index 9c729175b..ef6eedc15 100644
--- a/src/libstrongswan/plugins/curl/curl_fetcher.c
+++ b/src/libstrongswan/plugins/curl/curl_fetcher.c
@@ -40,7 +40,7 @@ struct private_curl_fetcher_t {
CURL* curl;
/**
- * Optional HTTP headers
+ * Optional HTTP headers
*/
struct curl_slist *headers;
};
diff --git a/src/libstrongswan/plugins/curl/curl_fetcher.h b/src/libstrongswan/plugins/curl/curl_fetcher.h
index d82992d32..e8efac8a1 100644
--- a/src/libstrongswan/plugins/curl/curl_fetcher.h
+++ b/src/libstrongswan/plugins/curl/curl_fetcher.h
@@ -34,9 +34,9 @@ struct curl_fetcher_t {
fetcher_t interface;
/**
- * Destroy a curl_fetcher instance.
- */
- void (*destroy)(curl_fetcher_t *this);
+ * Destroy a curl_fetcher instance.
+ */
+ void (*destroy)(curl_fetcher_t *this);
};
/**
diff --git a/src/libstrongswan/plugins/curl/curl_plugin.c b/src/libstrongswan/plugins/curl/curl_plugin.c
index f35170bdd..13dfa053f 100644
--- a/src/libstrongswan/plugins/curl/curl_plugin.c
+++ b/src/libstrongswan/plugins/curl/curl_plugin.c
@@ -66,12 +66,12 @@ plugin_t *plugin_create()
(fetcher_constructor_t)curl_fetcher_create, "https://");
lib->fetcher->add_fetcher(lib->fetcher,
(fetcher_constructor_t)curl_fetcher_create, "ftp://");
- }
- else
- {
- DBG1("global libcurl initializing failed: %s, curl disabled",
+ }
+ else
+ {
+ DBG1("global libcurl initializing failed: %s, curl disabled",
curl_easy_strerror(res));
- }
+ }
return &this->public.plugin;
}