comparison src/os/unix/ngx_user.c @ 4499:778ef9c3fd2d

Fixed spelling in single-line comments.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 28 Feb 2012 11:31:05 +0000
parents d620f497c50f
children 6ccd3a50b40f
comparison
equal deleted inserted replaced
4498:569ea17767bf 4499:778ef9c3fd2d
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