summaryrefslogtreecommitdiffstats
path: root/src/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/util.c b/src/util.c
index b39adfec1..0fe899fe0 100644
--- a/src/util.c
+++ b/src/util.c
@@ -1231,8 +1231,6 @@ process_to_str (enum process_type type)
return "worker";
case TYPE_FUZZY:
return "fuzzy";
- case TYPE_GREYLIST:
- return "greylist";
case TYPE_CONTROLLER:
return "controller";
case TYPE_LMTP:
@@ -1260,9 +1258,6 @@ str_to_process (const gchar *str)
else if (g_ascii_strcasecmp (str, "fuzzy") == 0) {
return TYPE_FUZZY;
}
- else if (g_ascii_strcasecmp (str, "greylist") == 0) {
- return TYPE_GREYLIST;
- }
else if (g_ascii_strcasecmp (str, "controller") == 0) {
return TYPE_CONTROLLER;
}