comparison src/os/unix/ngx_user.c @ 4517:50143b8fb95f stable-1.0

Merge of r4500: fixed spelling in single-line comments.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 05 Mar 2012 13:26:40 +0000
parents 4919fb357a5d
children 6ccd3a50b40f
comparison
equal deleted inserted replaced
4516:b927410d9638 4517:50143b8fb95f
65 size_t len; 65 size_t len;
66 ngx_err_t err; 66 ngx_err_t err;
67 67
68 #if (NGX_THREADS && NGX_NONREENTRANT_CRYPT) 68 #if (NGX_THREADS && NGX_NONREENTRANT_CRYPT)
69 69
70 /* crypt() is a time consuming funtion, so we only try to lock */ 70 /* crypt() is a time consuming function, so we only try to lock */
71 71
72 if (ngx_mutex_trylock(ngx_crypt_mutex) != NGX_OK) { 72 if (ngx_mutex_trylock(ngx_crypt_mutex) != NGX_OK) {
73 return NGX_AGAIN; 73 return NGX_AGAIN;
74 } 74 }
75 75