if ((malware_name = m_pcre_exec(avast_virus_re, buf)))
{
/* remove backslashes from the virus string */
- char *p, *q;
+ uschar *p, *q;
for (p = malware_name; *p; p++) if (*p == '\\')
for (q = p; *q; q++) *q = q[1];
uschar *p;
config_filename = config_main_filename = string_copy(filename);
- p = strrchr(filename, '/');
+ p = Ustrrchr(filename, '/');
config_main_directory = p ? string_copyn(filename, p - filename)
- : string_copy(".");
+ : string_copy(US".");
}
else
{
fd_set select_fd;
#endif
uschar *spamd_address_work;
- static const char * loglabel = US"spam acl condition:";
+ static const uschar * loglabel = US"spam acl condition:";
/* stop compiler warning */
result = 0;