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 59969c22ce
commit 66c25a7d77

View File

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