aboutsummaryrefslogtreecommitdiffstats
path: root/plugin_statfs.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2005-05-08 04:32:45 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2005-05-08 04:32:45 +0000
commitdbf5d92605a9db10e3e3cb154d03a515c5d5c5af (patch)
tree501d5dda3ce90fe924b893e487d9ef9f0683382b /plugin_statfs.c
parenta1c471e9fb7cadb68bb182ab2e9715a0aa092386 (diff)
downloadlcd4linux-dbf5d92605a9db10e3e3cb154d03a515c5d5c5af.tar.gz
[lcd4linux @ 2005-05-08 04:32:43 by reinelt]
CodingStyle added and applied git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@547 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'plugin_statfs.c')
-rw-r--r--plugin_statfs.c85
1 files changed, 44 insertions, 41 deletions
diff --git a/plugin_statfs.c b/plugin_statfs.c
index 9bf9510..d043e71 100644
--- a/plugin_statfs.c
+++ b/plugin_statfs.c
@@ -1,4 +1,4 @@
-/* $Id: plugin_statfs.c,v 1.1 2005/04/03 07:07:51 reinelt Exp $
+/* $Id: plugin_statfs.c,v 1.2 2005/05/08 04:32:45 reinelt Exp $
*
* plugin for statfs() syscall
*
@@ -23,6 +23,9 @@
*
*
* $Log: plugin_statfs.c,v $
+ * Revision 1.2 2005/05/08 04:32:45 reinelt
+ * CodingStyle added and applied
+ *
* Revision 1.1 2005/04/03 07:07:51 reinelt
* added statfs plugin
*
@@ -49,56 +52,56 @@
-static void my_statfs (RESULT *result, RESULT *arg1, RESULT *arg2)
+static void my_statfs(RESULT * result, RESULT * arg1, RESULT * arg2)
{
- struct statfs buf;
- char *path, *key;
- double value;
-
- path = R2S(arg1);
- key = R2S(arg2);
-
- if (statfs(path, &buf)!=0) {
- error("statfs(%s) failed: %s", path, strerror(errno));
- SetResult(&result, R_STRING, "");
- return;
- }
+ struct statfs buf;
+ char *path, *key;
+ double value;
+
+ path = R2S(arg1);
+ key = R2S(arg2);
+
+ if (statfs(path, &buf) != 0) {
+ error("statfs(%s) failed: %s", path, strerror(errno));
+ SetResult(&result, R_STRING, "");
+ return;
+ }
- if (strcasecmp(key, "type")==0) {
- value = buf.f_type;
- } else if (strcasecmp(key, "bsize")==0) {
- value = buf.f_bsize;
- } else if (strcasecmp(key, "blocks")==0) {
- value = buf.f_blocks;
- } else if (strcasecmp(key, "bfree")==0) {
- value = buf.f_bfree;
- } else if (strcasecmp(key, "bavail")==0) {
- value = buf.f_bavail;
- } else if (strcasecmp(key, "files")==0) {
- value = buf.f_files;
- } else if (strcasecmp(key, "ffree")==0) {
- value = buf.f_ffree;
+ if (strcasecmp(key, "type") == 0) {
+ value = buf.f_type;
+ } else if (strcasecmp(key, "bsize") == 0) {
+ value = buf.f_bsize;
+ } else if (strcasecmp(key, "blocks") == 0) {
+ value = buf.f_blocks;
+ } else if (strcasecmp(key, "bfree") == 0) {
+ value = buf.f_bfree;
+ } else if (strcasecmp(key, "bavail") == 0) {
+ value = buf.f_bavail;
+ } else if (strcasecmp(key, "files") == 0) {
+ value = buf.f_files;
+ } else if (strcasecmp(key, "ffree") == 0) {
+ value = buf.f_ffree;
#if 0
- } else if (strcasecmp(key, "fsid")==0) {
- value = buf.f_fsid;
+ } else if (strcasecmp(key, "fsid") == 0) {
+ value = buf.f_fsid;
#endif
- } else if (strcasecmp(key, "namelen")==0) {
- value = buf.f_namelen;
- } else {
- error("statfs: unknown field '%s'", key);
- value = -1;
- }
+ } else if (strcasecmp(key, "namelen") == 0) {
+ value = buf.f_namelen;
+ } else {
+ error("statfs: unknown field '%s'", key);
+ value = -1;
+ }
- SetResult(&result, R_NUMBER, &value);
+ SetResult(&result, R_NUMBER, &value);
}
-int plugin_init_statfs (void)
+int plugin_init_statfs(void)
{
- AddFunction ("statfs", 2, my_statfs);
- return 0;
+ AddFunction("statfs", 2, my_statfs);
+ return 0;
}
-void plugin_exit_statfs(void)
+void plugin_exit_statfs(void)
{
}