mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-21 17:01:23 -05:00
fix invalid format string
This commit is contained in:
parent
6585d8782b
commit
17a2a1d3c1
1 changed files with 2 additions and 3 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: check.c,v 1.30 2002/03/10 23:40:31 marka Exp $ */
|
||||
/* $Id: check.c,v 1.31 2002/03/14 00:43:00 bwelling Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -110,8 +110,7 @@ check_orderent(cfg_obj_t *ent, isc_log_t *logctx) {
|
|||
result = ISC_R_FAILURE;
|
||||
} else if (strcasecmp(cfg_obj_asstring(obj), "fixed") == 0) {
|
||||
cfg_obj_log(obj, logctx, ISC_LOG_WARNING,
|
||||
"rrset-order: order 'fixed' not implemented",
|
||||
cfg_obj_asstring(obj));
|
||||
"rrset-order: order 'fixed' not implemented");
|
||||
} else if (/* strcasecmp(cfg_obj_asstring(obj), "fixed") != 0 && */
|
||||
strcasecmp(cfg_obj_asstring(obj), "random") != 0 &&
|
||||
strcasecmp(cfg_obj_asstring(obj), "cyclic") != 0) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue