- made function static

This commit is contained in:
Jan Hutter 2005-11-09 16:32:50 +00:00
parent 6ae4efda08
commit 3f2b457cdf

View file

@ -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);