diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2010-11-04 16:19:39 +0100 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2010-11-09 20:43:50 +0100 |
commit | a816f1f588a37c32f0d4f162c005ff4df94872e6 (patch) | |
tree | 040804994f5d4355c05660da4c3aba3534ddd4fa /src/libcharon/plugins/tnc_imc/tnc_imc.c | |
parent | 1888dd6bd5e875a3d45cd708ad9e3829f5769baa (diff) | |
download | strongswan-a816f1f588a37c32f0d4f162c005ff4df94872e6.tar.bz2 strongswan-a816f1f588a37c32f0d4f162c005ff4df94872e6.tar.xz |
cleaned up whitespace
Diffstat (limited to 'src/libcharon/plugins/tnc_imc/tnc_imc.c')
-rw-r--r-- | src/libcharon/plugins/tnc_imc/tnc_imc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcharon/plugins/tnc_imc/tnc_imc.c b/src/libcharon/plugins/tnc_imc/tnc_imc.c index 6984e580e..60f907a8d 100644 --- a/src/libcharon/plugins/tnc_imc/tnc_imc.c +++ b/src/libcharon/plugins/tnc_imc/tnc_imc.c @@ -86,7 +86,7 @@ imc_t* tnc_imc_create(char* name, char *filename, TNC_IMCID id) /* we do not store or free dlopen() handles, leak_detective requires * the modules to keep loaded until leak report */ - + this->public.initialize = dlsym(handle, "TNC_IMC_Initialize"); if (!this->public.initialize) { @@ -105,7 +105,7 @@ imc_t* tnc_imc_create(char* name, char *filename, TNC_IMCID id) free(this); return NULL; } - this->public.receive_message = + this->public.receive_message = dlsym(handle, "TNC_IMC_ReceiveMessage"); this->public.batch_ending = dlsym(handle, "TNC_IMC_BatchEnding"); |