From 033598bc073da23dcec5e4ea80b85cccecd8958a Mon Sep 17 00:00:00 2001 From: Maxim Dounin Date: Mon, 12 Nov 2012 18:39:51 +0000 Subject: Merge of r4870, r4871, r4890, r4895: minor fixes. *) Made sure to initialize the entire ngx_file_t structure. Found by Coverity. *) Correct plural form for "path" in the whole source base. *) Removed conditional compilation from waitpid() error test. There are reports that call to a signal handler for an exited process despite waitpid() already called for the process may happen on Linux as well. *) Style, parentheses instead of braces in misc/GNUMakefile. --- src/core/ngx_cycle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/ngx_cycle.h') diff --git a/src/core/ngx_cycle.h b/src/core/ngx_cycle.h index 551b6288e..b55fee0f1 100644 --- a/src/core/ngx_cycle.h +++ b/src/core/ngx_cycle.h @@ -48,7 +48,7 @@ struct ngx_cycle_s { ngx_queue_t reusable_connections_queue; ngx_array_t listening; - ngx_array_t pathes; + ngx_array_t paths; ngx_list_t open_files; ngx_list_t shared_memory; -- cgit