summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 65bd8aa)
raw | patch | inline | side by side (parent: 65bd8aa)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Thu, 1 Nov 2007 00:39:44 +0000 (01:39 +0100) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Thu, 1 Nov 2007 00:39:44 +0000 (01:39 +0100) |
I. e. pass it to `ut_config'.
src/configfile.c | patch | blob | history |
diff --git a/src/configfile.c b/src/configfile.c
index 0310ca8aff417f37036a737ee55043f5182bc955..4702e7aba131bfaa79dd48418a80cc82be18172f 100644 (file)
--- a/src/configfile.c
+++ b/src/configfile.c
#include "common.h"
#include "plugin.h"
#include "configfile.h"
+#include "utils_threshold.h"
#define ESCAPE_NULL(str) ((str) == NULL ? "(null)" : (str))
{
if (strcasecmp (ci->key, "Plugin") == 0)
return (dispatch_block_plugin (ci));
+ else if (strcasecmp (ci->key, "Threshold") == 0)
+ return (ut_config (ci));
return (0);
}