~ubuntu-branches/ubuntu/hardy/nginx/hardy-backports

« back to all changes in this revision

Viewing changes to src/mail/ngx_mail.c

  • Committer: Bazaar Package Importer
  • Author(s): Michael Casadevall
  • Date: 2008-12-21 22:25:43 UTC
  • mfrom: (11.1.10 jaunty)
  • Revision ID: james.westby@ubuntu.com-20081221222543-44yu0i65ni6evses
Tags: 0.6.34-2ubuntu1~hardy1
* Source-level backport from jaunty to hardy of nginx (LP: #260640)
* debian/control:
  - Lowered lsb dependency to 3.2-4ubuntu1
* debian/init.d:
  - Removed usage of status_of_proc() to suite lower lsb

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
 
13
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
17
ngx_uint_t  ngx_mail_max_module;
388
388
}
389
389
 
390
390
 
391
 
static int
 
391
static ngx_int_t
392
392
ngx_mail_cmp_conf_in_addrs(const void *one, const void *two)
393
393
{
394
394
    ngx_mail_conf_in_addr_t  *first, *second;