Fixed compiler warning about missing return value

This commit is contained in:
Martin Willi
2009-11-12 11:17:02 +01:00
parent 1a86be6e48
commit 0850e33518
+2 -1
View File
@@ -484,6 +484,7 @@ static void* fetch_thread(void *arg)
fetch_ocsp(); fetch_ocsp();
fetch_crls(cache_crls); fetch_crls(cache_crls);
} }
return NULL;
} }
#endif /* THREADS*/ #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, fetch_req_t* build_crl_fetch_request(identification_t *issuer,
chunk_t authKeyID, chunk_t authKeyID,
linked_list_t *distributionPoints) linked_list_t *distributionPoints)
{ {
char *point; char *point;