diff options
author | Martin Willi <martin@strongswan.org> | 2009-11-12 11:17:02 +0100 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2009-11-12 11:17:02 +0100 |
commit | 0850e335186e2da7e2ee21f120f42ee606ba0026 (patch) | |
tree | 97b4dd85d3680acfa31f670bc8263f03fe11b5a3 /src | |
parent | 1a86be6e4891f83c34fc5e0ca12caacf0a2c725d (diff) | |
download | strongswan-0850e335186e2da7e2ee21f120f42ee606ba0026.tar.bz2 strongswan-0850e335186e2da7e2ee21f120f42ee606ba0026.tar.xz |
Fixed compiler warning about missing return value
Diffstat (limited to 'src')
-rw-r--r-- | src/pluto/fetch.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pluto/fetch.c b/src/pluto/fetch.c index 667951ba0..07425ad87 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; |