Skip to content
Snippets Groups Projects
Commit 92bc95d2 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix bug that broken mail received header RBL check

9 years ago in commit dbbfabf1
parent 2428244d
Branches
Tags
No related merge requests found
Pipeline #8153 failed
......@@ -2770,7 +2770,7 @@ static int chk_received_hdr(SOCKET socket, const char* prot, const char *buf, IN
p = strtok_r(NULL, "]", &last);
if (p == NULL)
break;
if (strnicmp("IPv6:", p, 5)) {
if (strnicmp("IPv6:", p, 5) == 0) {
p += 5;
SKIP_WHITESPACE(p);
memset(&ai, 0, sizeof(ai));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment