summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6b3bcf8)
raw | patch | inline | side by side (parent: 6b3bcf8)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sun, 11 Feb 2007 11:39:46 +0000 (12:39 +0100) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sun, 11 Feb 2007 11:39:46 +0000 (12:39 +0100) |
src/email.c | patch | blob | history | |
src/multimeter.c | patch | blob | history | |
src/users.c | patch | blob | history |
diff --git a/src/email.c b/src/email.c
index 509eb2305532c9d1d199ed441640df470cf4316a..bbee9bb699f041a9b4d26bb9019dc0746a85479c 100644 (file)
--- a/src/email.c
+++ b/src/email.c
if ((len < 0) || (len >= BUFSIZE))
return;
- plugin_submit ("email_spam_score", NULL, buf);
+ plugin_submit ("email_spam_score", "-", buf);
return;
} /* static void score_submit (double) */
diff --git a/src/multimeter.c b/src/multimeter.c
index 317745b285ad1798761ab651bfc1057fd065d0c6..46438bf37beb6566207aede99b388fb2bce7d8d2 100644 (file)
--- a/src/multimeter.c
+++ b/src/multimeter.c
if (snprintf (buf, BUFSIZE, "%u:%f", (unsigned int) curtime, *value) >= BUFSIZE)
return;
- plugin_submit (MODULE_NAME, NULL, buf);
+ plugin_submit (MODULE_NAME, "-", buf);
}
#undef BUFSIZE
diff --git a/src/users.c b/src/users.c
index 08fc4fd74d349853be9510ebcc75a689d5623e74..973fda0a57df2bc149cd8fba03e32a26ac4d3121 100644 (file)
--- a/src/users.c
+++ b/src/users.c
return;
}
- plugin_submit(MODULE_NAME, NULL, buf);
+ plugin_submit(MODULE_NAME, "-", buf);
return;
} /* static void users_submit(unsigned int users) */
#undef BUFSIZE