mirror of
https://github.com/nginx/nginx.git
synced 2024-12-20 06:03:31 -06:00
Core: fixed build on Tru64 UNIX.
There was a typo in NGX_EACCES. Reported by Goetz T. Fischer.
This commit is contained in:
parent
59969c22ce
commit
66c25a7d77
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user