Re: [Exim] 4.12 bug-fix release

Top Page
Delete this message
Reply to this message
Author: Nico Erfurth
Date:  
To: Philip Hazel
CC: exim-users
Subject: Re: [Exim] 4.12 bug-fix release
Philip Hazel wrote:
> I have replaced 4.11 with 4.12 on the ftp site:
>
> ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/exim4/exim-4.12.tar.gz
> ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/exim4/exim-4.12.tar.bz2
>
> 940c36e4771ea3e9b01d0fe4a07b57bd exim-4.12.tar.gz
> b27a2d3c95506c52349573c3d93049bd exim-4.12.tar.bz2


Just beeing curious, what's the reason for doing:

int c = Ustrncmp(name, lookup_list[mid].name, len);
if (c == 0 && Ustrlen(lookup_list[mid].name) == len)

this in search_findtype?

Instead of just
int c = Ustrcmp(name, lookup_list[mid].name);

?