Core: fixed build on Tru64 UNIX.

There was a typo in NGX_EACCES.

Reported by Goetz T. Fischer.
This commit is contained in:
Sergey Kandaurov 2015-02-10 01:51:08 +03:00
parent d718bb604a
commit 8dfa0eebff
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ ngx_shmtx_trylock(ngx_shmtx_t *mtx)
#if __osf__ /* Tru64 UNIX */
if (err == NGX_EACCESS) {
if (err == NGX_EACCES) {
return 0;
}