summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 424eab8)
raw | patch | inline | side by side (parent: 424eab8)
author | Florian Forster <sifnfors@informatik.stud.uni-erlangen.de> | |
Mon, 7 Dec 2009 10:50:36 +0000 (11:50 +0100) | ||
committer | Florian Forster <sifnfors@informatik.stud.uni-erlangen.de> | |
Mon, 7 Dec 2009 10:50:36 +0000 (11:50 +0100) |
src/openvpn.c | patch | blob | history |
diff --git a/src/openvpn.c b/src/openvpn.c
index 2d460d96a1a925943ee1af19737c71ea0ce0e031..1ac50830ceea5fb8f7cc4bdc5c21f68a5781a104 100644 (file)
--- a/src/openvpn.c
+++ b/src/openvpn.c
DEBUG ("openvpn plugin: status file \"%s\" added", temp->file);
- }
+ } /* if (strcasecmp ("StatusFile", key) == 0) */
else if (strcasecmp ("Compression", key) == 0)
{
if (IS_TRUE (value))
store_compression = 0;
DEBUG ("openvpn plugin: no 'compression statistcs' collected");
}
- }
+ } /* if (strcasecmp ("Compression", key) == 0) */
else if (strcasecmp ("ImprovedNamingSchema", key) == 0)
{
if (IS_TRUE (value))
{
new_naming_schema = 0;
}
- }
+ } /* if (strcasecmp ("ImprovedNamingSchema", key) == 0) */
else
{
return (-1);
plugin_register_read ("openvpn", openvpn_read);
plugin_register_shutdown ("openvpn", openvpn_shutdown);
} /* void module_register */
+
+/* vim: set sw=2 ts=2 : */