summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4aecad6)
raw | patch | inline | side by side (parent: 4aecad6)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sun, 24 Feb 2008 14:23:32 +0000 (15:23 +0100) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sun, 24 Feb 2008 14:23:32 +0000 (15:23 +0100) |
src/tail.c | patch | blob | history |
diff --git a/src/tail.c b/src/tail.c
index 7d77e253a49d6a13d4c5a99a50cd666ce3b9266e..01bf6292ac2d1583796d42d387a69b4080d6752f 100644 (file)
--- a/src/tail.c
+++ b/src/tail.c
* Instance "exim"
* <Match>
* Regex "S=([1-9][0-9]*)"
- * DSType "CouterAdd"
+ * DSType "CounterAdd"
* Type "ipt_bytes"
* Instance "total"
* </Match>
else if (strncasecmp ("Counter", ci->values[0].value.string, strlen ("Counter")) == 0)
{
cm->flags = UTILS_MATCH_DS_TYPE_COUNTER;
- if (strcasecmp ("CouterSet", ci->values[0].value.string) == 0)
+ if (strcasecmp ("CounterSet", ci->values[0].value.string) == 0)
cm->flags |= UTILS_MATCH_CF_COUNTER_SET;
- else if (strcasecmp ("CouterAdd", ci->values[0].value.string) == 0)
+ else if (strcasecmp ("CounterAdd", ci->values[0].value.string) == 0)
cm->flags |= UTILS_MATCH_CF_COUNTER_ADD;
- else if (strcasecmp ("CouterInc", ci->values[0].value.string) == 0)
+ else if (strcasecmp ("CounterInc", ci->values[0].value.string) == 0)
cm->flags |= UTILS_MATCH_CF_COUNTER_INC;
else
cm->flags = 0;