Browse Source

fixed a trivial typo

git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@1075 e5f2f494-b856-4b98-b285-d166d9295462
JINMEI Tatuya 15 years ago
parent
commit
7a803a47b7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/dns/cpp/rdata/generic/rrsig_46.cc

+ 1 - 1
src/lib/dns/cpp/rdata/generic/rrsig_46.cc

@@ -116,7 +116,7 @@ RRSIG::RRSIG(InputBuffer& buffer, size_t rdata_len)
 
     rdata_len -= (buffer.getPosition() - pos);
     if (rdata_len == 0) {
-        dns_throw(InvalidRdataLength, "DS too short");
+        dns_throw(InvalidRdataLength, "RRSIG too short");
     }
 
     vector<uint8_t> signature;