From: Florian Forster Date: Mon, 7 Dec 2009 10:50:36 +0000 (+0100) Subject: openvpn plugin: Added comments and vim formatting line. X-Git-Tag: collectd-4.9.0~37^2 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=ddb5eb9c7740dce805900afc650e29406258f689;p=collectd.git openvpn plugin: Added comments and vim formatting line. --- diff --git a/src/openvpn.c b/src/openvpn.c index 2d460d96..1ac50830 100644 --- a/src/openvpn.c +++ b/src/openvpn.c @@ -568,7 +568,7 @@ static int openvpn_config (const char *key, const char *value) DEBUG ("openvpn plugin: status file \"%s\" added", temp->file); - } + } /* if (strcasecmp ("StatusFile", key) == 0) */ else if (strcasecmp ("Compression", key) == 0) { if (IS_TRUE (value)) @@ -578,7 +578,7 @@ static int openvpn_config (const char *key, const char *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)) @@ -590,7 +590,7 @@ static int openvpn_config (const char *key, const char *value) { new_naming_schema = 0; } - } + } /* if (strcasecmp ("ImprovedNamingSchema", key) == 0) */ else { return (-1); @@ -622,3 +622,5 @@ void module_register (void) plugin_register_read ("openvpn", openvpn_read); plugin_register_shutdown ("openvpn", openvpn_shutdown); } /* void module_register */ + +/* vim: set sw=2 ts=2 : */