diff options
Diffstat (limited to 'src/libstrongswan/plugins/xcbc/xcbc_plugin.c')
-rw-r--r-- | src/libstrongswan/plugins/xcbc/xcbc_plugin.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/libstrongswan/plugins/xcbc/xcbc_plugin.c b/src/libstrongswan/plugins/xcbc/xcbc_plugin.c index 8c25a5ecf..88156f383 100644 --- a/src/libstrongswan/plugins/xcbc/xcbc_plugin.c +++ b/src/libstrongswan/plugins/xcbc/xcbc_plugin.c @@ -50,7 +50,11 @@ plugin_t *xcbc_plugin_create() private_xcbc_plugin_t *this; INIT(this, - .public.plugin.destroy = _destroy, + .public = { + .plugin = { + .destroy = _destroy, + }, + }, ); lib->crypto->add_prf(lib->crypto, PRF_AES128_XCBC, |