comparison src/os/unix/ngx_errno.c @ 4133:59b99f217c6d

Replaced "can not" with "cannot" and "could not" in a bunch of places. Fixed nearby grammar errors.
author Ruslan Ermilov <ru@nginx.com>
date Mon, 19 Sep 2011 14:48:29 +0000
parents e294f37401c0
children d620f497c50f
comparison
equal deleted inserted replaced
4132:cdc22824e22a 4133:59b99f217c6d
10 10
11 /* 11 /*
12 * The strerror() messages are copied because: 12 * The strerror() messages are copied because:
13 * 13 *
14 * 1) strerror() and strerror_r() functions are not Async-Signal-Safe, 14 * 1) strerror() and strerror_r() functions are not Async-Signal-Safe,
15 * therefore, they can not be used in signal handlers; 15 * therefore, they cannot be used in signal handlers;
16 * 16 *
17 * 2) a direct sys_errlist[] array may be used instead of these functions, 17 * 2) a direct sys_errlist[] array may be used instead of these functions,
18 * but Linux linker warns about its usage: 18 * but Linux linker warns about its usage:
19 * 19 *
20 * warning: `sys_errlist' is deprecated; use `strerror' or `strerror_r' instead 20 * warning: `sys_errlist' is deprecated; use `strerror' or `strerror_r' instead