override: fix comment

This commit is contained in:
Peter Cai 2021-04-05 16:26:07 +08:00
parent d68ad0971e
commit fc1f5a589e
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ impl OverrideResolver {
IpAddr::V6(addr) => (Rtype::Aaaa, AllRecordData::Aaaa(Aaaa::new(addr.clone()))),
};
// Convert AllRecordData to UnknownRecordData to match the type
// Convert AllRecordData to UnknownRecordData to match the type signature
// since our resolver client doesn't really care about the actual type
let mut rdata_buf: Vec<u8> = Vec::new();
rdata.compose(&mut rdata_buf).ok()?;