diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2020-01-11 23:07:53 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2020-01-12 00:02:15 +0000 |
commit | c4141216b51b0dce51504479342d2bfc8a83dfad (patch) | |
tree | e75faed1b6e630c8a4a2d05591f74f5ac4cac254 /src | |
parent | ebcf27afb54c7dc93a3a4a76487a597ec153e9b5 (diff) |
Fix build with DRWEB malware scanner
Broken-by: 9e21ce8fc4
Diffstat (limited to 'src')
-rw-r--r-- | src/src/malware.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/malware.c b/src/src/malware.c index ec2f7c1cf..cfff9ee5d 100644 --- a/src/src/malware.c +++ b/src/src/malware.c @@ -791,7 +791,7 @@ if (!malware_ok) if (*scanner_options != '/') { /* calc file size */ - if ((drweb_fd = exim_open(CCS eml_filename, O_RDONLY)) == -1) + if ((drweb_fd = exim_open2(CCS eml_filename, O_RDONLY)) == -1) return m_panic_defer_3(scanent, NULL, string_sprintf("can't open spool file %s: %s", eml_filename, strerror(errno)), |