]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
commas, commas, ..
authorAndreas Steffen <andreas.steffen@strongswan.org>
Thu, 25 Nov 2010 22:25:01 +0000 (23:25 +0100)
committerAndreas Steffen <andreas.steffen@strongswan.org>
Thu, 25 Nov 2010 22:25:01 +0000 (23:25 +0100)
src/libhydra/plugins/attr/attr_plugin.c
src/libhydra/plugins/attr_sql/attr_sql_plugin.c
src/libhydra/plugins/kernel_klips/kernel_klips_plugin.c
src/libhydra/plugins/resolve/resolve_plugin.c

index 3ff7e8943777817b227253cc299715eca6613d4c..0f66b680aa5469fdd1e40370c3b3a16919898052 100644 (file)
@@ -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);
 
index ac0304db5bd169c8cc98541af5dacb7b164f1529..ca9de023ea96fbf4e0de88d7a614c8cc075765e1 100644 (file)
@@ -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)
index 84d69c28d314bdc50b63fbc2c0ecd8ab01bfa328..3c312ca2b3e097e4ddf3778808ee283f1aaa70ac 100644 (file)
@@ -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);
index 40ad781ae072c142fe4c4fa45d25f725f55ad131..ad18c7060ad7d37f8692424700c00e7355f786fe 100644 (file)
@@ -54,7 +54,7 @@ plugin_t *resolve_plugin_create()
        INIT(this,
                .public = {
                        .plugin = {
-                               .destroy = _destroy
+                               .destroy = _destroy,
                        },
                },
                .handler = resolve_handler_create(),