comparison src/mail/ngx_mail_auth_http_module.c @ 1640:02a22cd5282a

64-bit time_t compatibility
author Igor Sysoev <igor@sysoev.ru>
date Thu, 15 Nov 2007 14:26:36 +0000
parents fe11e2a3946d
children 2a92804f4109 62c95a6b143b
comparison
equal deleted inserted replaced
1639:7d125a707158 1640:02a22cd5282a
716 s->quit = 1; 716 s->quit = 1;
717 ngx_mail_send(s->connection->write); 717 ngx_mail_send(s->connection->write);
718 return; 718 return;
719 } 719 }
720 720
721 ngx_add_timer(s->connection->read, timer * 1000); 721 ngx_add_timer(s->connection->read, (ngx_msec_t) (timer * 1000));
722 722
723 s->connection->read->handler = ngx_mail_auth_sleep_handler; 723 s->connection->read->handler = ngx_mail_auth_sleep_handler;
724 724
725 return; 725 return;
726 } 726 }
733 if (timer == 0) { 733 if (timer == 0) {
734 ngx_mail_auth_http_init(s); 734 ngx_mail_auth_http_init(s);
735 return; 735 return;
736 } 736 }
737 737
738 ngx_add_timer(s->connection->read, timer * 1000); 738 ngx_add_timer(s->connection->read, (ngx_msec_t) (timer * 1000));
739 739
740 s->connection->read->handler = ngx_mail_auth_sleep_handler; 740 s->connection->read->handler = ngx_mail_auth_sleep_handler;
741 741
742 return; 742 return;
743 } 743 }