aboutsummaryrefslogtreecommitdiffstats
path: root/src/evdns
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rambler-co.ru>2010-11-16 22:00:29 +0300
committerVsevolod Stakhov <vsevolod@rambler-co.ru>2010-11-16 22:00:29 +0300
commit3ebceeece2204d3755df1f1cc8210f7e97b6daad (patch)
tree38c122341dbbb2f1ea1a4c969ad95dda38c1106e /src/evdns
parentc85dd608a568d61e3b24c55b715ad37ceedb7110 (diff)
downloadrspamd-3ebceeece2204d3755df1f1cc8210f7e97b6daad.tar.gz
rspamd-3ebceeece2204d3755df1f1cc8210f7e97b6daad.zip
Make own strlcpy that does not calculate remaining string length (faster and more safe)
Allow only ASCII symbols in logs, escape control chars
Diffstat (limited to 'src/evdns')
-rw-r--r--src/evdns/evdns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/evdns/evdns.c b/src/evdns/evdns.c
index 5401104b5..ce7c0b429 100644
--- a/src/evdns/evdns.c
+++ b/src/evdns/evdns.c
@@ -2474,7 +2474,7 @@ request_new(struct evdns_base *base, int type, const char *name, int flags,
if (base->global_randomize_case) {
unsigned i;
char randbits[(sizeof(namebuf)+7)/8];
- g_strlcpy(namebuf, name, sizeof(namebuf));
+ rspamd_strlcpy(namebuf, name, sizeof(namebuf));
rand_bytes_function(randbits, (name_len+7)/8);
for (i = 0; i < name_len; ++i) {
if (g_ascii_isalpha(namebuf[i])) {