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-08-04 18:56:25 +0400
committerIgor Sysoev <igor@sysoev.ru>2008-08-04 18:56:25 +0400
commit90815b49af5f871d6b632188b971b4d4c3fd0f31 (patch)
treee118fb367602d006e01e3b82e00e4e571649ecff /src/os/win32/ngx_files.h
parent891f90be2803054229aba23c906b37adacf74c9c (diff)
fix building by msvc8 introduced in r2127
Diffstat (limited to 'src/os/win32/ngx_files.h')
-rw-r--r--src/os/win32/ngx_files.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/win32/ngx_files.h b/src/os/win32/ngx_files.h
index 294709f4b..2018e3fc6 100644
--- a/src/os/win32/ngx_files.h
+++ b/src/os/win32/ngx_files.h
@@ -123,7 +123,7 @@ ngx_int_t ngx_file_info(u_char *filename, ngx_file_info_t *fi);
- 116444736000000000) / 10000000)
-#define ngx_filename_cmp(s1, s2, n) strnicmp((char *) s1, (char *) s2, n)
+#define ngx_filename_cmp(s1, s2, n) _strnicmp((char *) s1, (char *) s2, n)
#define ngx_getcwd(buf, size) GetCurrentDirectory(size, buf)