Use uppercase M

This commit is contained in:
Miek Gieben 2012-04-18 12:57:38 +02:00
parent 4810b60cda
commit 3ef88ef28d
1 changed files with 1 additions and 1 deletions

View File

@ -279,7 +279,7 @@ func (s *RR_RRSIG) Sign(k PrivateKey, rrset []RR) error {
if err != nil {
return err
}
signature := []byte{0x6D} // The ASCII M for Miek (not used in DNSSEC)
signature := []byte{0x4D} // The ASCII M for Miek (not used in DNSSEC)
signature = append(signature, r1.Bytes()...)
signature = append(signature, s1.Bytes()...)
s.Signature = unpackBase64(signature)