diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2010-02-02 19:44:34 +0100 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2010-02-02 19:44:34 +0100 |
commit | 889ff9389b5c5cf1e889aed754816e35d8b02d70 (patch) | |
tree | 0b60475a8cf7ed05c1475dc90d99a7dbb8d4cce8 /src | |
parent | 41faec079116d2945ab05aa96724ae5395955502 (diff) | |
download | strongswan-889ff9389b5c5cf1e889aed754816e35d8b02d70.tar.bz2 strongswan-889ff9389b5c5cf1e889aed754816e35d8b02d70.tar.xz |
renamed init_fetch() to fetch_initialize()
Diffstat (limited to 'src')
-rw-r--r-- | src/pluto/fetch.c | 2 | ||||
-rw-r--r-- | 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 */ |