From: Martin Willi Date: Thu, 12 Nov 2009 10:17:02 +0000 (+0100) Subject: Fixed compiler warning about missing return value X-Git-Tag: 4.3.6~209 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0850e335186e2da7e2ee21f120f42ee606ba0026;p=thirdparty%2Fstrongswan.git Fixed compiler warning about missing return value --- diff --git a/src/pluto/fetch.c b/src/pluto/fetch.c index 667951ba02..07425ad874 100644 --- a/src/pluto/fetch.c +++ b/src/pluto/fetch.c @@ -484,6 +484,7 @@ static void* fetch_thread(void *arg) fetch_ocsp(); fetch_crls(cache_crls); } + return NULL; } #endif /* THREADS*/ @@ -598,7 +599,7 @@ void add_distribution_points(linked_list_t *points, linked_list_t *new_points) } fetch_req_t* build_crl_fetch_request(identification_t *issuer, - chunk_t authKeyID, + chunk_t authKeyID, linked_list_t *distributionPoints) { char *point;