diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-12-29 13:55:10 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-12-29 13:55:10 +0000 |
commit | 5dff77ad7f1517a9d986b9c90fae953e7c98dd79 (patch) | |
tree | cab773c9550c1c17d0fc7a8126b942f7e5c29784 /src | |
parent | e19a5f9e8f374e7276beab9bed3c8055c6878e9a (diff) | |
download | nginx-5dff77ad7f1517a9d986b9c90fae953e7c98dd79.tar.gz nginx-5dff77ad7f1517a9d986b9c90fae953e7c98dd79.zip |
condition declarations inside blocks update missed in r1705
Diffstat (limited to 'src')
-rw-r--r-- | src/http/modules/ngx_http_dav_module.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/http/modules/ngx_http_dav_module.c b/src/http/modules/ngx_http_dav_module.c index 2d555c556..b53213590 100644 --- a/src/http/modules/ngx_http_dav_module.c +++ b/src/http/modules/ngx_http_dav_module.c @@ -799,9 +799,6 @@ ngx_http_dav_copy_dir_time(ngx_tree_ctx_t *ctx, ngx_str_t *path) u_char *p, *dir; size_t len; ngx_http_dav_copy_ctx_t *copy; -#if (WIN32) - ngx_fd_t fd; -#endif ngx_log_debug1(NGX_LOG_DEBUG_HTTP, ctx->log, 0, "http copy dir time: \"%s\"", path->data); @@ -821,7 +818,9 @@ ngx_http_dav_copy_dir_time(ngx_tree_ctx_t *ctx, ngx_str_t *path) ngx_log_debug1(NGX_LOG_DEBUG_HTTP, ctx->log, 0, "http copy dir time to: \"%s\"", dir); -#if (WIN32) +#if (NGX_WIN32) + { + ngx_fd_t fd; fd = ngx_open_file(dir, NGX_FILE_RDWR, NGX_FILE_OPEN, 0); @@ -839,6 +838,7 @@ ngx_http_dav_copy_dir_time(ngx_tree_ctx_t *ctx, ngx_str_t *path) ngx_log_error(NGX_LOG_ALERT, ctx->log, ngx_errno, ngx_close_file_n " \"%s\" failed", dir); } + } failed: |