comparison src/os/unix/ngx_errno.c @ 4246:d3568507db51 stable-1.0

Merging r4132, r4134, r4143, r4183, r4191, r4199: Various fixes related to error messages: *) Removed old warning that suggested to use "server_name_in_redirect off" (now the default) in place of no longer supported "server_name *". *) Fixing directive name in error message if types hash size is not enough. *) Replaced "can not" with "cannot" and "could not" in a bunch of places. Fixed nearby grammar errors. *) Overhauled error messages.
author Igor Sysoev <igor@sysoev.ru>
date Tue, 01 Nov 2011 13:24:50 +0000
parents e294f37401c0
children d620f497c50f
comparison
equal deleted inserted replaced
4245:8d39230df833 4246:d3568507db51
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