aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2013-11-28 10:08:41 +0100
committerGravatar Christian Hesse <mail@eworm.de>2013-11-28 10:08:41 +0100
commitdb0e599efc92d088c1192dfb1ed0500ddfda5453 (patch)
tree8c0dfbf5b1fc1249f6c612e0f3c4de6b2f1e217e
parent89ac371617e2e5f50390a3f97c121876c6d3d2eb (diff)
downloadpacredir-db0e599efc92d088c1192dfb1ed0500ddfda5453.tar.gz
pacredir-db0e599efc92d088c1192dfb1ed0500ddfda5453.tar.zst
clean up trailing white spaces
-rw-r--r--pacredir.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/pacredir.c b/pacredir.c
index 343e107..c4c0593 100644
--- a/pacredir.c
+++ b/pacredir.c
@@ -152,7 +152,7 @@ static void browse_callback(AvahiServiceBrowser *b, AvahiIfIndex interface, Avah
struct ignore_interfaces * tmp_ignore_interfaces = ignore_interfaces;
assert(b);
-
+
switch (event) {
case AVAHI_BROWSER_FAILURE:
@@ -226,7 +226,7 @@ static void * get_http_code(void * data) {
if ((curl = curl_easy_init()) != NULL) {
curl_easy_setopt(curl, CURLOPT_URL, request->url);
- /* example.com is redirected, so we tell libcurl to follow redirection */
+ /* example.com is redirected, so we tell libcurl to follow redirection */
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
/* set user agent */
curl_easy_setopt(curl, CURLOPT_USERAGENT, "pacredir/" VERSION " (" ARCH ")");
@@ -271,7 +271,7 @@ static void * get_http_code(void * data) {
} else
request->last_modified = 0;
- /* always cleanup */
+ /* always cleanup */
curl_easy_cleanup(curl);
}
@@ -330,7 +330,7 @@ static int ahc_echo(void * cls, struct MHD_Connection * connection, const char *
/* get timestamp of local file */
filename = malloc(strlen(SYNCPATH) + strlen(basename) + 2);
sprintf(filename, SYNCPATH "/%s", basename);
-
+
if (stat(filename, &fst) != 0)
write_log(stderr, "stat() failed, you do not have a local copy of %s\n", basename);
else
@@ -438,7 +438,7 @@ void sig_callback(int signal) {
/*** sighup_callback ***/
void sighup_callback(int signal) {
struct hosts * tmphosts = hosts;
-
+
write_log(stdout, "Received SIGHUP, resetting bad status for hosts.\n");
while (tmphosts->host != NULL) {
@@ -489,7 +489,7 @@ int main(int argc, char ** argv) {
write_log(stdout, "Ignore interface: [%s]\n", values);
# endif
tmp_ignore_interfaces = ignore_interfaces;
-
+
value = strtok(values, DELIMITER);
while (value != NULL) {
tmp_ignore_interfaces->interface = strdup(value);
@@ -500,7 +500,7 @@ int main(int argc, char ** argv) {
tmp_ignore_interfaces->interface = NULL;
tmp_ignore_interfaces->next = NULL;
}
-
+
/* add static pacserve hosts */
if ((values = iniparser_getstring(ini, "general:pacserve hosts", NULL)) != NULL) {
# if defined DEBUG
@@ -512,7 +512,7 @@ int main(int argc, char ** argv) {
value = strtok(NULL, DELIMITER);
}
}
-
+
/* add static pacdbserve hosts */
if ((values = iniparser_getstring(ini, "general:pacdbserve hosts", NULL)) != NULL) {
# if defined DEBUG
@@ -524,7 +524,7 @@ int main(int argc, char ** argv) {
value = strtok(NULL, DELIMITER);
}
}
-
+
/* done reading config file, free */
iniparser_freedict(ini);
}
@@ -571,7 +571,7 @@ int main(int argc, char ** argv) {
signal(SIGTERM, sig_callback);
signal(SIGINT, sig_callback);
signal(SIGHUP, sighup_callback);
-
+
/* run the main loop */
avahi_simple_poll_loop(simple_poll);