commas, commas, ..

This commit is contained in:
Andreas Steffen 2010-11-25 23:25:01 +01:00
parent 53e159f111
commit 5b2547c7a7
4 changed files with 6 additions and 6 deletions

View File

@ -57,7 +57,7 @@ plugin_t *attr_plugin_create()
.destroy = _destroy, .destroy = _destroy,
}, },
}, },
.provider = attr_provider_create() .provider = attr_provider_create(),
); );
hydra->attributes->add_provider(hydra->attributes, &this->provider->provider); hydra->attributes->add_provider(hydra->attributes, &this->provider->provider);

View File

@ -71,10 +71,10 @@ plugin_t *attr_sql_plugin_create()
INIT(this, INIT(this,
.public = { .public = {
.plugin = { .plugin = {
.destroy = _destroy .destroy = _destroy,
}, },
}, },
.db = lib->db->create(lib->db, uri) .db = lib->db->create(lib->db, uri),
); );
if (!this->db) if (!this->db)

View File

@ -51,8 +51,8 @@ plugin_t *kernel_klips_plugin_create()
.public = { .public = {
.plugin = { .plugin = {
.destroy = _destroy, .destroy = _destroy,
} },
} },
); );
hydra->kernel_interface->add_ipsec_interface(hydra->kernel_interface, hydra->kernel_interface->add_ipsec_interface(hydra->kernel_interface,
(kernel_ipsec_constructor_t)kernel_klips_ipsec_create); (kernel_ipsec_constructor_t)kernel_klips_ipsec_create);

View File

@ -54,7 +54,7 @@ plugin_t *resolve_plugin_create()
INIT(this, INIT(this,
.public = { .public = {
.plugin = { .plugin = {
.destroy = _destroy .destroy = _destroy,
}, },
}, },
.handler = resolve_handler_create(), .handler = resolve_handler_create(),