comparison src/mail/ngx_mail_pop3_handler.c @ 1486:0e7074ef7303

style fix: remove trailing spaces
author Igor Sysoev <igor@sysoev.ru>
date Fri, 14 Sep 2007 15:04:45 +0000
parents 4606dce4f416
children f69493e8faab
comparison
equal deleted inserted replaced
1485:b3488fc2675a 1486:0e7074ef7303
60 s->out.data = pop3_greeting; 60 s->out.data = pop3_greeting;
61 } 61 }
62 62
63 c->read->handler = ngx_mail_pop3_init_protocol; 63 c->read->handler = ngx_mail_pop3_init_protocol;
64 64
65 ngx_add_timer(c->read, cscf->timeout); 65 ngx_add_timer(c->read, cscf->timeout);
66 66
67 if (ngx_handle_read_event(c->read, 0) == NGX_ERROR) { 67 if (ngx_handle_read_event(c->read, 0) == NGX_ERROR) {
68 ngx_mail_close_connection(c); 68 ngx_mail_close_connection(c);
69 } 69 }
70 70