summaryrefslogtreecommitdiffstats
path: root/src/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/util.h b/src/util.h
index 2951942e3..9b7891c05 100644
--- a/src/util.h
+++ b/src/util.h
@@ -219,11 +219,6 @@ gsize rspamd_strlcpy (gchar *dst, const gchar *src, gsize siz);
gsize rspamd_strlcpy_tolower (gchar *dst, const gchar *src, gsize siz);
/*
- * Strip <> from email address
- */
-gchar * escape_braces_addr_fstr (memory_pool_t *pool, f_str_t *in);
-
-/*
* Convert milliseconds to timeval fields
*/
#define msec_to_tv(msec, tv) do { (tv)->tv_sec = (msec) / 1000; (tv)->tv_usec = ((msec) - (tv)->tv_sec * 1000) * 1000; } while(0)