aboutsummaryrefslogtreecommitdiffstats
path: root/cfg.c
diff options
context:
space:
mode:
authorreinelt <>2003-12-19 05:35:14 +0000
committerreinelt <>2003-12-19 05:35:14 +0000
commit8f59bbc584905f461dc4d628e7347839612b3fcf (patch)
treeaec740b39fa23917f7ba4ee95172f738d7ef8621 /cfg.c
parent42157e8617953e3c0863679f4cc4684842979204 (diff)
downloadlcd4linux-8f59bbc584905f461dc4d628e7347839612b3fcf.tar.gz
[lcd4linux @ 2003-12-19 05:35:13 by reinelt]
renamed 'client' to 'plugin'
Diffstat (limited to '')
-rw-r--r--cfg.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/cfg.c b/cfg.c
index ad7c52a..1fc5830 100644
--- a/cfg.c
+++ b/cfg.c
@@ -1,4 +1,4 @@
-/* $Id: cfg.c,v 1.18 2003/10/11 06:01:52 reinelt Exp $^
+/* $Id: cfg.c,v 1.19 2003/12/19 05:35:14 reinelt Exp $^
*
* config file stuff
*
@@ -22,6 +22,9 @@
*
*
* $Log: cfg.c,v $
+ * Revision 1.19 2003/12/19 05:35:14 reinelt
+ * renamed 'client' to 'plugin'
+ *
* Revision 1.18 2003/10/11 06:01:52 reinelt
*
* renamed expression.{c,h} to client.{c,h}
@@ -142,7 +145,7 @@
#include "debug.h"
#include "cfg.h"
-#include "client.h"
+#include "plugin.h"
typedef struct {
char *key;
@@ -315,7 +318,7 @@ static int check_cfg_source(char *file)
}
-static void cfg_client (RESULT *result, RESULT *arg1)
+static void cfg_plugin (RESULT *result, RESULT *arg1)
{
char *value=cfg_get(R2S(arg1), "");
SetResult(&result, R_STRING, value);
@@ -365,8 +368,8 @@ int l4l_cfg_init (char *file)
}
fclose (stream);
- // register as a client
- AddFunction ("cfg", 1, cfg_client);
+ // register as a plugin
+ AddFunction ("cfg", 1, cfg_plugin);
return 0;
}