[BACK]Return to zoneconf.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / external / mpl / bind / dist / bin / named

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/external/mpl/bind/dist/bin/named/zoneconf.c between version 1.3 and 1.3.2.3

version 1.3, 2019/01/09 16:54:59 version 1.3.2.3, 2020/04/08 14:07:04
Line 262  configure_zone_ssutable(const cfg_obj_t 
Line 262  configure_zone_ssutable(const cfg_obj_t 
   
                 dns_fixedname_init(&fname);                  dns_fixedname_init(&fname);
                 if (usezone) {                  if (usezone) {
                         result = dns_name_copy(dns_zone_getorigin(zone),                          dns_name_copynf(dns_zone_getorigin(zone),
                                                dns_fixedname_name(&fname),                                             dns_fixedname_name(&fname));
                                                NULL);  
                         if (result != ISC_R_SUCCESS) {  
                                 cfg_obj_log(identity, named_g_lctx,  
                                             ISC_LOG_ERROR,  
                                             "error copying origin: %s",  
                                             isc_result_totext(result));  
                                 goto cleanup;  
                         }  
                 } else {                  } else {
                         str = cfg_obj_asstring(dname);                          str = cfg_obj_asstring(dname);
                         isc_buffer_constinit(&b, str, strlen(str));                          isc_buffer_constinit(&b, str, strlen(str));
Line 791  isself(dns_view_t *myview, dns_tsigkey_t
Line 783  isself(dns_view_t *myview, dns_tsigkey_t
         dns_aclenv_t *env = ns_interfacemgr_getaclenv(interfacemgr);          dns_aclenv_t *env = ns_interfacemgr_getaclenv(interfacemgr);
         dns_view_t *view;          dns_view_t *view;
         dns_tsigkey_t *key = NULL;          dns_tsigkey_t *key = NULL;
         dns_name_t *tsig = NULL;  
         isc_netaddr_t netsrc;          isc_netaddr_t netsrc;
         isc_netaddr_t netdst;          isc_netaddr_t netdst;
   
Line 806  isself(dns_view_t *myview, dns_tsigkey_t
Line 797  isself(dns_view_t *myview, dns_tsigkey_t
   
         for (view = ISC_LIST_HEAD(named_g_server->viewlist);          for (view = ISC_LIST_HEAD(named_g_server->viewlist);
              view != NULL;               view != NULL;
              view = ISC_LIST_NEXT(view, link)) {               view = ISC_LIST_NEXT(view, link))
           {
                   const dns_name_t *tsig = NULL;
   
                 if (view->matchrecursiveonly)                  if (view->matchrecursiveonly)
                         continue;                          continue;

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.3.2.3

CVSweb <webmaster@jp.NetBSD.org>