Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 18 Mar 2010 19:00:35 +0000 (UTC)
From:      Doug Barton <dougb@FreeBSD.org>
To:        cvs-src-old@freebsd.org
Subject:   cvs commit: src/contrib/bind9 CHANGES version src/contrib/bind9/bin/named server.c src/contrib/bind9/doc/arm Bv9ARM-book.xml Bv9ARM.ch06.html Bv9ARM.ch07.html Bv9ARM.ch08.html Bv9ARM.ch09.html Bv9ARM.html Bv9ARM.pdf man.dig.html ...
Message-ID:  <201003181905.o2IJ5uCk063521@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
dougb       2010-03-18 19:00:35 UTC

  FreeBSD src repository

  Modified files:
    contrib/bind9        CHANGES version 
    contrib/bind9/bin/named server.c 
    contrib/bind9/doc/arm Bv9ARM-book.xml Bv9ARM.ch06.html 
                          Bv9ARM.ch07.html Bv9ARM.ch08.html 
                          Bv9ARM.ch09.html Bv9ARM.html Bv9ARM.pdf 
                          man.dig.html man.dnssec-dsfromkey.html 
                          man.dnssec-keyfromlabel.html 
                          man.dnssec-keygen.html 
                          man.dnssec-signzone.html man.host.html 
                          man.named-checkconf.html 
                          man.named-checkzone.html man.named.html 
                          man.nsupdate.html man.rndc-confgen.html 
                          man.rndc.conf.html man.rndc.html 
    contrib/bind9/lib/dns api ncache.c rbtdb.c rdatalist.c 
                          rdataset.c rdataslab.c resolver.c 
                          result.c sdb.c sdlz.c validator.c view.c 
    contrib/bind9/lib/dns/include/dns rdataset.h resolver.h 
                                      result.h validator.h 
    contrib/bind9/lib/lwres/man lwres.html lwres_buffer.html 
                                lwres_config.html 
                                lwres_context.html lwres_gabn.html 
                                lwres_gai_strerror.html 
                                lwres_getaddrinfo.html 
                                lwres_gethostent.html 
                                lwres_getipnode.html 
                                lwres_getnameinfo.html 
                                lwres_getrrsetbyname.html 
                                lwres_gnba.html 
                                lwres_hstrerror.html 
                                lwres_inetntop.html 
                                lwres_noop.html lwres_packet.html 
                                lwres_resutil.html 
    lib/bind             config.h 
  Log:
  SVN rev 205292 on 2010-03-18 19:00:35Z by dougb
  
  Update to 9.6.2-P1, the latest patchfix release which deals with
  the problems related to the handling of broken DNSSEC trust chains.
  
  This fix is only relevant for those who have DNSSEC validation
  enabled and configure trust anchors from third parties, either
  manually, or through a system like DLV.
  
  Revision  Changes      Path
  1.13      +3 -0        src/contrib/bind9/CHANGES
  1.7       +4 -2        src/contrib/bind9/bin/named/server.c
  1.8       +8 -1        src/contrib/bind9/doc/arm/Bv9ARM-book.xml
  1.7       +45 -37      src/contrib/bind9/doc/arm/Bv9ARM.ch06.html
  1.6       +7 -7        src/contrib/bind9/doc/arm/Bv9ARM.ch07.html
  1.6       +9 -9        src/contrib/bind9/doc/arm/Bv9ARM.ch08.html
  1.6       +90 -90      src/contrib/bind9/doc/arm/Bv9ARM.ch09.html
  1.6       +21 -21      src/contrib/bind9/doc/arm/Bv9ARM.html
  1.7       +1397 -1422  src/contrib/bind9/doc/arm/Bv9ARM.pdf
  1.6       +10 -10      src/contrib/bind9/doc/arm/man.dig.html
  1.4       +8 -8        src/contrib/bind9/doc/arm/man.dnssec-dsfromkey.html
  1.4       +6 -6        src/contrib/bind9/doc/arm/man.dnssec-keyfromlabel.html
  1.6       +7 -7        src/contrib/bind9/doc/arm/man.dnssec-keygen.html
  1.7       +7 -7        src/contrib/bind9/doc/arm/man.dnssec-signzone.html
  1.6       +5 -5        src/contrib/bind9/doc/arm/man.host.html
  1.7       +6 -6        src/contrib/bind9/doc/arm/man.named-checkconf.html
  1.7       +6 -6        src/contrib/bind9/doc/arm/man.named-checkzone.html
  1.7       +8 -8        src/contrib/bind9/doc/arm/man.named.html
  1.5       +7 -7        src/contrib/bind9/doc/arm/man.nsupdate.html
  1.7       +6 -6        src/contrib/bind9/doc/arm/man.rndc-confgen.html
  1.7       +6 -6        src/contrib/bind9/doc/arm/man.rndc.conf.html
  1.7       +6 -6        src/contrib/bind9/doc/arm/man.rndc.html
  1.10      +3 -3        src/contrib/bind9/lib/dns/api
  1.3       +18 -2       src/contrib/bind9/lib/dns/include/dns/rdataset.h
  1.3       +44 -2       src/contrib/bind9/lib/dns/include/dns/resolver.h
  1.3       +5 -3        src/contrib/bind9/lib/dns/include/dns/result.h
  1.3       +4 -2        src/contrib/bind9/lib/dns/include/dns/validator.h
  1.3       +4 -2        src/contrib/bind9/lib/dns/ncache.c
  1.7       +35 -3       src/contrib/bind9/lib/dns/rbtdb.c
  1.3       +4 -2        src/contrib/bind9/lib/dns/rdatalist.c
  1.3       +23 -2       src/contrib/bind9/lib/dns/rdataset.c
  1.3       +4 -2        src/contrib/bind9/lib/dns/rdataslab.c
  1.10      +386 -31     src/contrib/bind9/lib/dns/resolver.c
  1.3       +5 -2        src/contrib/bind9/lib/dns/result.c
  1.5       +4 -2        src/contrib/bind9/lib/dns/sdb.c
  1.4       +4 -2        src/contrib/bind9/lib/dns/sdlz.c
  1.8       +137 -23     src/contrib/bind9/lib/dns/validator.c
  1.5       +8 -3        src/contrib/bind9/lib/dns/view.c
  1.5       +7 -7        src/contrib/bind9/lib/lwres/man/lwres.html
  1.5       +3 -3        src/contrib/bind9/lib/lwres/man/lwres_buffer.html
  1.5       +6 -6        src/contrib/bind9/lib/lwres/man/lwres_config.html
  1.5       +5 -5        src/contrib/bind9/lib/lwres/man/lwres_context.html
  1.5       +5 -5        src/contrib/bind9/lib/lwres/man/lwres_gabn.html
  1.5       +4 -4        src/contrib/bind9/lib/lwres/man/lwres_gai_strerror.html
  1.5       +5 -5        src/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.html
  1.5       +6 -6        src/contrib/bind9/lib/lwres/man/lwres_gethostent.html
  1.5       +5 -5        src/contrib/bind9/lib/lwres/man/lwres_getipnode.html
  1.5       +6 -6        src/contrib/bind9/lib/lwres/man/lwres_getnameinfo.html
  1.5       +5 -5        src/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.html
  1.5       +5 -5        src/contrib/bind9/lib/lwres/man/lwres_gnba.html
  1.5       +5 -5        src/contrib/bind9/lib/lwres/man/lwres_hstrerror.html
  1.5       +5 -5        src/contrib/bind9/lib/lwres/man/lwres_inetntop.html
  1.5       +5 -5        src/contrib/bind9/lib/lwres/man/lwres_noop.html
  1.5       +4 -4        src/contrib/bind9/lib/lwres/man/lwres_packet.html
  1.5       +5 -5        src/contrib/bind9/lib/lwres/man/lwres_resutil.html
  1.13      +3 -3        src/contrib/bind9/version
  1.14      +4 -0        src/lib/bind/config.h



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201003181905.o2IJ5uCk063521>