QueryLogsSqlite: disabled validation for qname to allow displaying invalid domain requests in logs.

This commit is contained in:
Shreyas Zare
2021-10-09 16:48:09 +05:30
parent 302c6da8cc
commit ea2b01e1ac

View File

@@ -558,7 +558,7 @@ WHERE
if (reader.IsDBNull(6))
question = null;
else
question = new DnsQuestionRecord(reader.GetString(6), (DnsResourceRecordType)reader.GetInt32(7), (DnsClass)reader.GetInt32(8));
question = new DnsQuestionRecord(reader.GetString(6), (DnsResourceRecordType)reader.GetInt32(7), (DnsClass)reader.GetInt32(8), false);
string answer;