From 3f2b457cdf24a3c7e1e3bcf00c19c8210d073170 Mon Sep 17 00:00:00 2001 From: Jan Hutter Date: Wed, 9 Nov 2005 16:32:50 +0000 Subject: [PATCH] - made function static --- Source/charon/ike_sa_manager.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/charon/ike_sa_manager.c b/Source/charon/ike_sa_manager.c index dac03c2b1..378f139e3 100644 --- a/Source/charon/ike_sa_manager.c +++ b/Source/charon/ike_sa_manager.c @@ -84,10 +84,10 @@ static status_t ike_sa_entry_destroy(ike_sa_entry_t *this) * * This constructor additionaly creates a new and empty SA * - * @param ike_sa_id the associated ike_sa_id_t, NOT cloned + * @param ike_sa_id the associated ike_sa_id_t, cloned * @return created entry, with ike_sa and ike_sa_id */ -ike_sa_entry_t *ike_sa_entry_create(ike_sa_id_t *ike_sa_id) +static ike_sa_entry_t *ike_sa_entry_create(ike_sa_id_t *ike_sa_id) { ike_sa_entry_t *this = allocator_alloc_thing(ike_sa_entry_t);