diff options
author | Ruslan Ermilov <ru@nginx.com> | 2012-02-28 11:31:05 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@nginx.com> | 2012-02-28 11:31:05 +0000 |
commit | b74f8ffce4aa7a7090e19021854304570238edb1 (patch) | |
tree | 3285bb23a7a1d7b689959995783a2acaa99e0cf9 /src/http/modules/ngx_http_log_module.c | |
parent | c66a1e7a172e042e8a3822192e79853e2afac4e6 (diff) | |
download | nginx-b74f8ffce4aa7a7090e19021854304570238edb1.tar.gz nginx-b74f8ffce4aa7a7090e19021854304570238edb1.zip |
Fixed spelling in single-line comments.
Diffstat (limited to 'src/http/modules/ngx_http_log_module.c')
-rw-r--r-- | src/http/modules/ngx_http_log_module.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/http/modules/ngx_http_log_module.c b/src/http/modules/ngx_http_log_module.c index 737a772d6..2452f23b3 100644 --- a/src/http/modules/ngx_http_log_module.c +++ b/src/http/modules/ngx_http_log_module.c @@ -161,8 +161,8 @@ static ngx_http_module_t ngx_http_log_module_ctx = { NULL, /* create server configuration */ NULL, /* merge server configuration */ - ngx_http_log_create_loc_conf, /* create location configration */ - ngx_http_log_merge_loc_conf /* merge location configration */ + ngx_http_log_create_loc_conf, /* create location configuration */ + ngx_http_log_merge_loc_conf /* merge location configuration */ }; @@ -377,10 +377,10 @@ ngx_http_log_script_write(ngx_http_request_t *r, ngx_http_log_script_t *script, if (!r->root_tested) { - /* test root directory existance */ + /* test root directory existence */ if (ngx_http_map_uri_to_path(r, &path, &root, 0) == NULL) { - /* simulate successfull logging */ + /* simulate successful logging */ return len; } @@ -404,14 +404,14 @@ ngx_http_log_script_write(ngx_http_request_t *r, ngx_http_log_script_t *script, != NGX_OK) { if (of.err == 0) { - /* simulate successfull logging */ + /* simulate successful logging */ return len; } ngx_log_error(NGX_LOG_ERR, r->connection->log, of.err, "testing \"%s\" existence failed", path.data); - /* simulate successfull logging */ + /* simulate successful logging */ return len; } @@ -419,7 +419,7 @@ ngx_http_log_script_write(ngx_http_request_t *r, ngx_http_log_script_t *script, ngx_log_error(NGX_LOG_ERR, r->connection->log, NGX_ENOTDIR, "testing \"%s\" existence failed", path.data); - /* simulate successfull logging */ + /* simulate successful logging */ return len; } } @@ -428,7 +428,7 @@ ngx_http_log_script_write(ngx_http_request_t *r, ngx_http_log_script_t *script, script->values->elts) == NULL) { - /* simulate successfull logging */ + /* simulate successful logging */ return len; } @@ -457,7 +457,7 @@ ngx_http_log_script_write(ngx_http_request_t *r, ngx_http_log_script_t *script, { ngx_log_error(NGX_LOG_CRIT, r->connection->log, ngx_errno, "%s \"%s\" failed", of.failed, log.data); - /* simulate successfull logging */ + /* simulate successful logging */ return len; } |