Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2008-04-29 13:28:42 +0400
committerIgor Sysoev <igor@sysoev.ru>2008-04-29 13:28:42 +0400
commita13b3b97eafbbe7fa6586e4f73b8c80ee478244c (patch)
tree3bf8bd774d810a450edfcefe2c5ab7fc68010e40 /src/os/win32/ngx_files.h
parent8443360bac77bfbc123cc40943a8f851b5a5edd6 (diff)
ignore glob no match error
Diffstat (limited to 'src/os/win32/ngx_files.h')
-rw-r--r--src/os/win32/ngx_files.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/os/win32/ngx_files.h b/src/os/win32/ngx_files.h
index 799e0b0c4..5f926417c 100644
--- a/src/os/win32/ngx_files.h
+++ b/src/os/win32/ngx_files.h
@@ -184,7 +184,11 @@ ngx_int_t ngx_de_link_info(u_char *name, ngx_dir_t *dir);
typedef struct {
HANDLE dir;
WIN32_FIND_DATA finddata;
- ngx_int_t ready;
+
+ unsigned ready:1;
+ unsigned test:1;
+ unsigned no_match:1;
+
u_char *pattern;
ngx_str_t name;
size_t last;