From: Mark Andrews Date: Mon, 7 Apr 2003 02:29:46 +0000 (+0000) Subject: type/class reversed in ns_client_aclmsg() call. X-Git-Tag: v9.2.3rc1~104^2~45 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=d544aec9ee7e6638cb96d1d454267ff42cbfb41d;p=thirdparty%2Fbind9.git type/class reversed in ns_client_aclmsg() call. --- diff --git a/bin/named/xfrout.c b/bin/named/xfrout.c index 2dded4d9a5f..684e68f8ec6 100644 --- a/bin/named/xfrout.c +++ b/bin/named/xfrout.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: xfrout.c,v 1.110 2003/01/21 06:11:46 marka Exp $ */ +/* $Id: xfrout.c,v 1.111 2003/04/07 02:29:46 marka Exp $ */ #include @@ -1009,8 +1009,8 @@ ns_xfr_start(ns_client_t *client, dns_rdatatype_t reqtype) { /* * Decide whether to allow this transfer. */ - ns_client_aclmsg("zone transfer", question_name, - client->view->rdclass, reqtype, msg, sizeof(msg)); + ns_client_aclmsg("zone transfer", question_name, reqtype, + client->view->rdclass, msg, sizeof(msg)); CHECK(ns_client_checkacl(client, msg, dns_zone_getxfracl(zone), ISC_TRUE, ISC_LOG_ERROR));