Menu

#126 Lookup not working

closed-fixed
daemon (84)
5
2011-05-14
2011-03-25
No

Testing the "Lookup" feature, I verified that it was not working.
After applying the following patch, it worker for me:

--- src/dspam.c.orig 2011-03-25 00:14:16.000000000 -0300
+++ src/dspam.c 2011-03-24 16:56:22.000000000 -0300
@@ -3857,7 +3857,7 @@
while(ptr != NULL && i>=0 && i<4) {
octet[i] = ptr;
ptr = strtok(NULL, ".");
- if (ptr == NULL && i!=4)
+ if (ptr == NULL && i!=0)
return 0;
i--;
}

Discussion

  • Stevan Bajic

    Stevan Bajic - 2011-05-14

    Thanks for reporting. It's fixed now in GIT.

     
  • Stevan Bajic

    Stevan Bajic - 2011-05-14
    • assigned_to: nobody --> sbajic
    • status: open --> closed-fixed
     

Log in to post a comment.