From 889ff9389b5c5cf1e889aed754816e35d8b02d70 Mon Sep 17 00:00:00 2001 From: Andreas Steffen Date: Tue, 2 Feb 2010 19:44:34 +0100 Subject: [PATCH] renamed init_fetch() to fetch_initialize() --- src/pluto/fetch.c | 2 +- src/pluto/plutomain.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pluto/fetch.c b/src/pluto/fetch.c index ecdadb2eb..6172165bd 100644 --- a/src/pluto/fetch.c +++ b/src/pluto/fetch.c @@ -500,7 +500,7 @@ static void* fetch_thread(void *arg) /** * Initializes curl and starts the fetching thread */ -void init_fetch(void) +void fetch_initialize(void) { if (crl_check_interval > 0) { diff --git a/src/pluto/plutomain.c b/src/pluto/plutomain.c index a1eb50e69..8b922df8c 100644 --- a/src/pluto/plutomain.c +++ b/src/pluto/plutomain.c @@ -674,7 +674,7 @@ int main(int argc, char **argv) init_kernel(); init_adns(); init_myid(); - init_fetch(); + fetch_initialize(); ac_initialize(); /* drop unneeded capabilities and change UID/GID */