Skip to content

Commit

Permalink
saxfr: fix unhash
Browse files Browse the repository at this point in the history
  • Loading branch information
mind04 committed Jun 8, 2015
1 parent 24c7b47 commit 5dc1964
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pdns/saxfr.cc
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ try
DNSName label /* FIXME rename */=record.first;
if (isNSEC3 && unhash)
{
auto i = hashes.find(makeRelative(label.toString(), argv[3]));
auto i = hashes.find(label.makeRelative(argv[3]).toStringNoDot());
if (i != hashes.end())
label=i->second;
}
Expand Down

0 comments on commit 5dc1964

Please sign in to comment.