comparison src/mail/ngx_mail.c @ 372:6639b93e81b2 NGINX_0_6_30

nginx 0.6.30 *) Change: now if an "include" directive pattern does not match any file, then nginx does not issue an error. *) Feature: now the time in directives may be specified without spaces, for example, "1h50m". *) Bugfix: memory leaks if the "ssl_verify_client" directive was on. Thanks to Chavelle Vincent. *) Bugfix: the "sub_filter" directive might set text to change into output. *) Bugfix: the "error_page" directive did not take into account arguments in redirected URI. *) Bugfix: now nginx always opens files in binary mode under Cygwin. *) Bugfix: nginx could not be built on OpenBSD; bug appeared in 0.6.15.
author Igor Sysoev <http://sysoev.ru>
date Tue, 29 Apr 2008 00:00:00 +0400
parents 1c519aff5c0c
children 984bb0b1399b
comparison
equal deleted inserted replaced
371:b6a2a305fdad 372:6639b93e81b2
9 #include <ngx_event.h> 9 #include <ngx_event.h>
10 #include <ngx_mail.h> 10 #include <ngx_mail.h>
11 11
12 12
13 static char *ngx_mail_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf); 13 static char *ngx_mail_block(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
14 static int ngx_mail_cmp_conf_in_addrs(const void *one, const void *two); 14 static ngx_int_t ngx_mail_cmp_conf_in_addrs(const void *one, const void *two);
15 15
16 16
17 ngx_uint_t ngx_mail_max_module; 17 ngx_uint_t ngx_mail_max_module;
18 18
19 19
386 386
387 return NGX_CONF_OK; 387 return NGX_CONF_OK;
388 } 388 }
389 389
390 390
391 static int 391 static ngx_int_t
392 ngx_mail_cmp_conf_in_addrs(const void *one, const void *two) 392 ngx_mail_cmp_conf_in_addrs(const void *one, const void *two)
393 { 393 {
394 ngx_mail_conf_in_addr_t *first, *second; 394 ngx_mail_conf_in_addr_t *first, *second;
395 395
396 first = (ngx_mail_conf_in_addr_t *) one; 396 first = (ngx_mail_conf_in_addr_t *) one;