From d634583eeefe12b832a63c301d8977c5c6235f20 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Wed, 16 Feb 2011 18:07:01 +0100 Subject: imlib.c indentation fixes --- src/imlib.c | 70 ++++++++++++++++++++++++++++++------------------------------- 1 file changed, 35 insertions(+), 35 deletions(-) (limited to 'src') diff --git a/src/imlib.c b/src/imlib.c index 9f3437b..7a059d4 100644 --- a/src/imlib.c +++ b/src/imlib.c @@ -440,10 +440,10 @@ char *feh_http_load_image(char *url) } /* while read */ close(sockno); fclose(fp); - } else if (opt.libcurl_http) { - CURL *curl; + } else { + CURL *curl; CURLcode res; - char *sfn; + char *sfn; FILE *sfp; int fd = -1; char *ebuff; @@ -451,45 +451,45 @@ char *feh_http_load_image(char *url) curl = curl_easy_init(); if (!curl) { - weprintf("open url: libcurl initialization failure"); - return NULL; + weprintf("open url: libcurl initialization failure"); + return NULL; } sfn = estrjoin("_", tmpname, "XXXXXX", NULL); free(tmpname); fd = mkstemp(sfn); if (fd != -1) { - sfp = fdopen(fd, "w+"); - if (sfp != NULL) { - curl_easy_setopt(curl, CURLOPT_URL, url); - curl_easy_setopt(curl, CURLOPT_WRITEDATA, sfp); - /* curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); */ - ebuff = emalloc(CURL_ERROR_SIZE); - curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, ebuff); - curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1L); - - res = curl_easy_perform(curl); - curl_easy_cleanup(curl); - if (res != CURLE_OK) { - weprintf("open url: %s", ebuff); - unlink(sfn); - close(fd); - free(sfn); - sfn = NULL; - } - - free(ebuff); - fclose(sfp); - return sfn; - } else { - weprintf("open url: fdopen failed:"); - free(sfn); - unlink(sfn); - close(fd); - } + sfp = fdopen(fd, "w+"); + if (sfp != NULL) { + curl_easy_setopt(curl, CURLOPT_URL, url); + curl_easy_setopt(curl, CURLOPT_WRITEDATA, sfp); + /* curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); */ + ebuff = emalloc(CURL_ERROR_SIZE); + curl_easy_setopt(curl, CURLOPT_ERRORBUFFER, ebuff); + curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1L); + + res = curl_easy_perform(curl); + curl_easy_cleanup(curl); + if (res != CURLE_OK) { + weprintf("open url: %s", ebuff); + unlink(sfn); + close(fd); + free(sfn); + sfn = NULL; + } + + free(ebuff); + fclose(sfp); + return sfn; + } else { + weprintf("open url: fdopen failed:"); + free(sfn); + unlink(sfn); + close(fd); + } } else { - weprintf("open url: mkstemp failed:"); - free(sfn); + weprintf("open url: mkstemp failed:"); + free(sfn); } curl_easy_cleanup(curl); return NULL; -- cgit v1.2.3