[Pdns-dev] Re: [Pdns-users] PowerDNS 2.9.10 released!

Norbert Sendetzky norbert at linuxnetworks.de
Thu Jul 3 14:39:48 CEST 2003


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On Thursday 03 July 2003 13:15, bert hubert wrote:
> > Damn! The current release still contains the axfr bug (negation
> > of if statement).
>
> Very sure? I just committed. Can you recheck?

Yes, I'm sure. It's still wrong in 2.9.10 and in ViewCVS/cvs co pdns

Currently:
static bool canDoAXFR(DNSPacket *q)
{
  if(!arg().mustDo("disable-axfr"))   // "!" is wrong!
    return false;

Must be:
static bool canDoAXFR(DNSPacket *q)
{
  if(arg().mustDo("disable-axfr"))   // No "!" here
    return false;


Norbert

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iEYEARECAAYFAj8EFgQACgkQxMLs5v5/7eCgKwCgt7gJEYC3n2tM7O5TN9tSdP9h
lHoAn1VEugATjv4pXLtFaNEA979RDjXV
=fdqJ
-----END PGP SIGNATURE-----



More information about the Pdns-dev mailing list