diff --git a/CHANGES b/CHANGES index 760c5de8aa..eef76e23ae 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,6 @@ --- 9.5.0a7 released --- -2252. [bug] Fixed memory leaks in sortlist code [RT #17216] +2252. [bug] Fixed errors in sortlist code [RT #17216] 2251. [placeholder] diff --git a/bin/named/server.c b/bin/named/server.c index 0a934c7ee5..9db2075948 100644 --- a/bin/named/server.c +++ b/bin/named/server.c @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: server.c,v 1.491 2007/09/26 03:22:43 marka Exp $ */ +/* $Id: server.c,v 1.492 2007/10/18 01:37:49 each Exp $ */ /*! \file */ @@ -345,13 +345,13 @@ configure_view_sortlist(const cfg_obj_t *vconfig, const cfg_obj_t *config, return (ISC_R_SUCCESS); /* - * Use a nest level of 2 for the "top level" of the sortlist; - * this means each entry in the top two levels will be stored as - * lists of separate, nested ACLs, rather than merged together + * Use a nest level of 3 for the "top level" of the sortlist; + * this means each entry in the top three levels will be stored + * as lists of separate, nested ACLs, rather than merged together * into IP tables as is usually done with ACLs. */ result = cfg_acl_fromconfig(aclobj, config, ns_g_lctx, - actx, mctx, 2, aclp); + actx, mctx, 3, aclp); return (result); }