The `struct ulogd_plugin` object names have trailing g's. Remove them.
Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
Signed-off-by: Florian Westphal <fw@strlen.de>
return ULOGD_IRET_OK;
}
-static struct ulogd_plugin ip2hbin_pluging = {
+static struct ulogd_plugin ip2hbin_plugin = {
.name = "IP2HBIN",
.input = {
.keys = ip2hbin_inp,
void init(void)
{
- ulogd_register_plugin(&ip2hbin_pluging);
+ ulogd_register_plugin(&ip2hbin_plugin);
}
return ULOGD_IRET_OK;
}
-static struct ulogd_plugin ip2str_pluging = {
+static struct ulogd_plugin ip2str_plugin = {
.name = "IP2STR",
.input = {
.keys = ip2str_inp,
void init(void)
{
- ulogd_register_plugin(&ip2str_pluging);
+ ulogd_register_plugin(&ip2str_plugin);
}