X-Git-Url: http://git.wpitchoune.net/gitweb/?p=ppastats.git;a=blobdiff_plain;f=src%2Flp_ws.c;h=5eca19ab4c47ef30be8dd6dd4536a64ba2514892;hp=b6957eb83314a62ffb6d07b67be9c831a7473944;hb=04e8520815632d17a6705219ad8301c1352058f6;hpb=9d8ca122223ad917f61d4f8f5e32f809b5926222 diff --git a/src/lp_ws.c b/src/lp_ws.c index b6957eb..5eca19a 100644 --- a/src/lp_ws.c +++ b/src/lp_ws.c @@ -30,13 +30,12 @@ #include "lp_json.h" #include "ppastats.h" -#define QUERY_GET_PUBLISHED_BINARIES \ - "?ws.op=getPublishedBinaries" -#define QUERY_GET_DOWNLOAD_COUNT "?ws.op=getDownloadCount" -#define QUERY_GET_DAILY_DOWNLOAD_TOTALS \ - "?ws.op=getDailyDownloadTotals" +static const char *QUERY_GET_PUBLISHED_BINARIES = "?ws.op=getPublishedBinaries"; +static const char *QUERY_GET_DOWNLOAD_COUNT = "?ws.op=getDownloadCount"; +static const char * +QUERY_GET_DAILY_DOWNLOAD_TOTALS = "?ws.op=getDailyDownloadTotals"; -static int DEFAULT_FETCH_RETRIES = 3; +static const int DEFAULT_FETCH_RETRIES = 3; static CURL *curl; @@ -106,7 +105,11 @@ static char *fetch_url(const char *url) case 503: case 504: if (retries) { - fprintf(stderr, "Fetch failed: %ld\n", code); + fprintf(stderr, + "Fetch failed: with code %ld " + "for URL= %s\n", + code, + url); if (debug) printf("Wait 5s before retry.\n");