diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-11-30 17:48:08 +0300 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-11-30 17:48:08 +0300 |
commit | 632e13627f8ad4ebf632a8b616c62dc6622d375e (patch) | |
tree | 91654d26d1e76d8c677b0dec7be8059c0c1f86ef /src/util.c | |
parent | 2975827e40a8e7c6e820c42921fb8792cf637450 (diff) | |
download | rspamd-632e13627f8ad4ebf632a8b616c62dc6622d375e.tar.gz rspamd-632e13627f8ad4ebf632a8b616c62dc6622d375e.zip |
Check for SIGUSR1 by libevent to avoid signals collisions.
Remove greylist_storage as it was never used and is actually replaced with basic kvstorage.
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 5 |
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; } |