mirror of
https://github.com/nginx/nginx.git
synced 2026-08-27 04:07:18 +00: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue