comparison src/os/unix/ngx_files.h @ 240:7d7cee0d62e0 NGINX_0_4_5

nginx 0.4.5 *) Bugfix: nginx could not be built on Linux and Solaris; bug appeared in 0.4.4.
author Igor Sysoev <http://sysoev.ru>
date Mon, 02 Oct 2006 00:00:00 +0400
parents a528ae0fe909
children c5c2b2883984
comparison
equal deleted inserted replaced
239:4f355d4f0cfa 240:7d7cee0d62e0
129 #define ngx_de_size(dir) (dir)->info.st_size 129 #define ngx_de_size(dir) (dir)->info.st_size
130 #define ngx_de_mtime(dir) (dir)->info.st_mtime 130 #define ngx_de_mtime(dir) (dir)->info.st_mtime
131 131
132 132
133 typedef struct { 133 typedef struct {
134 int n; 134 size_t n;
135 glob_t pglob; 135 glob_t pglob;
136 u_char *pattern; 136 u_char *pattern;
137 ngx_log_t *log; 137 ngx_log_t *log;
138 } ngx_glob_t; 138 } ngx_glob_t;
139 139