mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-23 19:05:01 -04:00
removed redundant parenthesis (I don't know why it was included in the
previous commit..)
This commit is contained in:
parent
b0364f1f3c
commit
fa77ca1069
1 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: server.c,v 1.511 2008/07/11 23:05:45 jinmei Exp $ */
|
||||
/* $Id: server.c,v 1.512 2008/07/12 05:58:08 jinmei Exp $ */
|
||||
|
||||
/*! \file */
|
||||
|
||||
|
|
@ -3007,7 +3007,7 @@ load_configuration(const char *filename, ns_server_t *server,
|
|||
|
||||
result = isc_socketmgr_getmaxsockets(ns_g_socketmgr, &maxsocks);
|
||||
if (result == ISC_R_SUCCESS &&
|
||||
((isc_resourcevalue_t)maxsocks > nfiles) {
|
||||
(isc_resourcevalue_t)maxsocks > nfiles) {
|
||||
isc_log_write(ns_g_lctx, NS_LOGCATEGORY_GENERAL,
|
||||
NS_LOGMODULE_SERVER, ISC_LOG_WARNING,
|
||||
"max open files "
|
||||
|
|
|
|||
Loading…
Reference in a new issue