diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-05-29 13:02:09 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-05-29 13:02:09 +0000 |
commit | 1393325df8b1f530bf5c257fde39c26e8333d8d7 (patch) | |
tree | fa29f174c74ea518d2115bc069df3789c6e62622 /src/core/nginx.c | |
parent | 6253ca1b62c24bbac8c380d4ae64353b671ad7ef (diff) | |
download | nginx-1393325df8b1f530bf5c257fde39c26e8333d8d7.tar.gz nginx-1393325df8b1f530bf5c257fde39c26e8333d8d7.zip |
nginx-0.0.1-2003-05-29-17:02:09 import
Diffstat (limited to 'src/core/nginx.c')
-rw-r--r-- | src/core/nginx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/nginx.c b/src/core/nginx.c index c2fdc87ba..e1894f4cf 100644 --- a/src/core/nginx.c +++ b/src/core/nginx.c @@ -90,8 +90,8 @@ int main(int argc, char *const *argv) conf.module_type = NGX_CORE_MODULE; conf.cmd_type = NGX_MAIN_CONF; - conf_file.len = sizeof("nginx.conf") - 1; - conf_file.data = "nginx.conf"; + conf_file.len = sizeof(NGINX_CONF) - 1; + conf_file.data = NGINX_CONF; if (ngx_conf_parse(&conf, &conf_file) != NGX_CONF_OK) { return 1; |