X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fascent.c;h=36694f619b87b7b761bb440bef11c8f4f53c1c08;hb=7111bb6df7628edce3a8e538b386fbe27633a191;hp=678a4a152fcc97bde1620681dc12a27cc1f00654;hpb=be126043c2be20399d7670fe194645292018bde0;p=collectd.git diff --git a/src/ascent.c b/src/ascent.c index 678a4a15..36694f61 100644 --- a/src/ascent.c +++ b/src/ascent.c @@ -500,7 +500,7 @@ static int ascent_init(void) /* {{{ */ int status; status = snprintf(credentials, sizeof(credentials), "%s:%s", user, - (pass == NULL) ? "" : pass); + (pass == NULL) ? "" : pass); if ((status < 0) || ((size_t)status >= sizeof(credentials))) { ERROR("ascent plugin: ascent_init: Returning an error because the " "credentials have been truncated."); @@ -511,7 +511,6 @@ static int ascent_init(void) /* {{{ */ #endif } - curl_easy_setopt(curl, CURLOPT_URL, url); curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); curl_easy_setopt(curl, CURLOPT_MAXREDIRS, 50L); @@ -554,6 +553,9 @@ static int ascent_read(void) /* {{{ */ } ascent_buffer_fill = 0; + + curl_easy_setopt(curl, CURLOPT_URL, url); + if (curl_easy_perform(curl) != CURLE_OK) { ERROR("ascent plugin: curl_easy_perform failed: %s", ascent_curl_error); return -1;