From 3ebceeece2204d3755df1f1cc8210f7e97b6daad Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Tue, 16 Nov 2010 22:00:29 +0300 Subject: Make own strlcpy that does not calculate remaining string length (faster and more safe) Allow only ASCII symbols in logs, escape control chars --- src/spf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/spf.c') diff --git a/src/spf.c b/src/spf.c index fcfdbd05c..fcbefeab2 100644 --- a/src/spf.c +++ b/src/spf.c @@ -206,7 +206,7 @@ parse_spf_hostmask (struct worker_task *task, const gchar *begin, struct spf_add p = strchr (begin, '/'); if (p != NULL) { /* Extract mask */ - g_strlcpy (mask_buf, p + 1, sizeof (mask_buf)); + rspamd_strlcpy (mask_buf, p + 1, sizeof (mask_buf)); addr->mask = mask_buf[0] * 10 + mask_buf[1]; if (addr->mask > 32) { return FALSE; @@ -214,7 +214,7 @@ parse_spf_hostmask (struct worker_task *task, const gchar *begin, struct spf_add if (host == NULL) { hostlen = p - begin; host = memory_pool_alloc (task->task_pool, hostlen); - g_strlcpy (host, begin, hostlen); + rspamd_strlcpy (host, begin, hostlen); } } else { -- cgit v1.2.3