diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-05-27 12:18:54 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-05-27 12:18:54 +0000 |
commit | 6253ca1b62c24bbac8c380d4ae64353b671ad7ef (patch) | |
tree | cccc0130b6fb065ff235750d23b817e890bd5e57 /src/event/modules/ngx_aio_module.c | |
parent | 187fcd82410e0f9022b0090a27b040eb1211c3f5 (diff) | |
download | nginx-6253ca1b62c24bbac8c380d4ae64353b671ad7ef.tar.gz nginx-6253ca1b62c24bbac8c380d4ae64353b671ad7ef.zip |
nginx-0.0.1-2003-05-27-16:18:54 import
Diffstat (limited to 'src/event/modules/ngx_aio_module.c')
-rw-r--r-- | src/event/modules/ngx_aio_module.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/event/modules/ngx_aio_module.c b/src/event/modules/ngx_aio_module.c index afb343ef2..cc48926de 100644 --- a/src/event/modules/ngx_aio_module.c +++ b/src/event/modules/ngx_aio_module.c @@ -29,7 +29,6 @@ ngx_os_io_t ngx_os_aio = { static ngx_str_t aio_name = ngx_string("aio"); ngx_event_module_t ngx_aio_module_ctx = { - NGX_EVENT_MODULE, &aio_name, NULL, /* create configuration */ NULL, /* init configuration */ @@ -49,10 +48,10 @@ ngx_event_module_t ngx_aio_module_ctx = { }; ngx_module_t ngx_aio_module = { + NGX_MODULE, &ngx_aio_module_ctx, /* module context */ - 0, /* module index */ NULL, /* module directives */ - NGX_EVENT_MODULE_TYPE, /* module type */ + NGX_EVENT_MODULE, /* module type */ NULL /* init module */ }; |