aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2010-11-25 23:25:01 +0100
committerAndreas Steffen <andreas.steffen@strongswan.org>2010-11-25 23:25:01 +0100
commit5b2547c7a7cb7b386b6ebbef0e10919bf14d962e (patch)
tree84ab994e62eb71620db231f293da6ca19500f106
parent53e159f111b59fc40b00ab58e1c9d6aa7861e27d (diff)
downloadstrongswan-5b2547c7a7cb7b386b6ebbef0e10919bf14d962e.tar.bz2
strongswan-5b2547c7a7cb7b386b6ebbef0e10919bf14d962e.tar.xz
commas, commas, ..
-rw-r--r--src/libhydra/plugins/attr/attr_plugin.c2
-rw-r--r--src/libhydra/plugins/attr_sql/attr_sql_plugin.c4
-rw-r--r--src/libhydra/plugins/kernel_klips/kernel_klips_plugin.c4
-rw-r--r--src/libhydra/plugins/resolve/resolve_plugin.c2
4 files changed, 6 insertions, 6 deletions
diff --git a/src/libhydra/plugins/attr/attr_plugin.c b/src/libhydra/plugins/attr/attr_plugin.c
index 3ff7e8943..0f66b680a 100644
--- a/src/libhydra/plugins/attr/attr_plugin.c
+++ b/src/libhydra/plugins/attr/attr_plugin.c
@@ -57,7 +57,7 @@ plugin_t *attr_plugin_create()
.destroy = _destroy,
},
},
- .provider = attr_provider_create()
+ .provider = attr_provider_create(),
);
hydra->attributes->add_provider(hydra->attributes, &this->provider->provider);
diff --git a/src/libhydra/plugins/attr_sql/attr_sql_plugin.c b/src/libhydra/plugins/attr_sql/attr_sql_plugin.c
index ac0304db5..ca9de023e 100644
--- a/src/libhydra/plugins/attr_sql/attr_sql_plugin.c
+++ b/src/libhydra/plugins/attr_sql/attr_sql_plugin.c
@@ -71,10 +71,10 @@ plugin_t *attr_sql_plugin_create()
INIT(this,
.public = {
.plugin = {
- .destroy = _destroy
+ .destroy = _destroy,
},
},
- .db = lib->db->create(lib->db, uri)
+ .db = lib->db->create(lib->db, uri),
);
if (!this->db)
diff --git a/src/libhydra/plugins/kernel_klips/kernel_klips_plugin.c b/src/libhydra/plugins/kernel_klips/kernel_klips_plugin.c
index 84d69c28d..3c312ca2b 100644
--- a/src/libhydra/plugins/kernel_klips/kernel_klips_plugin.c
+++ b/src/libhydra/plugins/kernel_klips/kernel_klips_plugin.c
@@ -51,8 +51,8 @@ plugin_t *kernel_klips_plugin_create()
.public = {
.plugin = {
.destroy = _destroy,
- }
- }
+ },
+ },
);
hydra->kernel_interface->add_ipsec_interface(hydra->kernel_interface,
(kernel_ipsec_constructor_t)kernel_klips_ipsec_create);
diff --git a/src/libhydra/plugins/resolve/resolve_plugin.c b/src/libhydra/plugins/resolve/resolve_plugin.c
index 40ad781ae..ad18c7060 100644
--- a/src/libhydra/plugins/resolve/resolve_plugin.c
+++ b/src/libhydra/plugins/resolve/resolve_plugin.c
@@ -54,7 +54,7 @@ plugin_t *resolve_plugin_create()
INIT(this,
.public = {
.plugin = {
- .destroy = _destroy
+ .destroy = _destroy,
},
},
.handler = resolve_handler_create(),