Le Tuesday 10 November 2009 14:09:34 Wolfgang Breyha, vous avez écrit :
> ------- You are receiving this mail because: -------
> You are on the CC list for the bug.
>
> http://bugs.exim.org/show_bug.cgi?id=905
>
>
>
>
> --- Comment #2 from Wolfgang Breyha <[email protected]>  2009-11-10 13:09:34
> --- Created an attachment (id=342)
>  --> (http://bugs.exim.org/attachment.cgi?id=342)
> dcc.c fixes (unused variables, pointer fix)
>
>
> --
> Configure bugmail: http://bugs.exim.org/userprefs.cgi?tab=email

Hi,

with your last patch, it still remains:

312c312
<     debug_printf("\n****************************\n", sendbuf);
---
>     debug_printf("\n****************************\n%s", sendbuf);
363c363
<   while(resp = read(sockfd, recvbuf, sizeof(recvbuf)-1) > 0) {
---
>   while((resp = read(sockfd, recvbuf, sizeof(recvbuf)-1)) > 0) {
388c388
<               dcc_result = "A";
---
>               dcc_result = US"A";
394c394
<               dcc_result = "R";
---
>               dcc_result = US"R";
410c410
<               dcc_result = "A";
---
>               dcc_result = US"A";
417c417
<               dcc_result = "G";
---
>               dcc_result = US"G";
426c426
<               dcc_result = "T";
---
>               dcc_result = US"T";
434c434
<               dcc_result = "T";
---
>               dcc_result = US"T";
500c500
<     if (((xtra_hdrs = expand_string("$acl_m_dcc_add_header")) != NULL) && 
(xtra_hdrs[0] != '\0')) {
---
>     if (((xtra_hdrs = expand_string(US"$acl_m_dcc_add_header")) != NULL) && 
(xtra_hdrs[0] != '\0')) {


---------------------------------------
Regards
--Serge

-- 
## List details at http://lists.exim.org/mailman/listinfo/exim-dev Exim details 
at http://www.exim.org/ ##

Reply via email to