diff options
Diffstat (limited to 'src/core/ngx_shmtx.c')
-rw-r--r-- | src/core/ngx_shmtx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_shmtx.c b/src/core/ngx_shmtx.c index 6230dc060..a255903ef 100644 --- a/src/core/ngx_shmtx.c +++ b/src/core/ngx_shmtx.c @@ -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; } |