dnstap debug tool, document string change more clearly.

This commit is contained in:
W.C.A. Wijngaards 2020-02-28 08:36:44 +01:00
parent 5b61afd38c
commit 85c4e58831

View file

@ -474,8 +474,11 @@ static char* q_of_msg(ProtobufCBinaryData message)
if(sldns_wire2str_rrquestion_buf(message.data+12, message.len-12,
buf, sizeof(buf)) != 0) {
/* remove trailing newline, tabs to spaces */
/* remove the newline: */
if(buf[0] != 0) buf[strlen(buf)-1]=0;
/* remove first tab (before type) */
if(strrchr(buf, '\t')) *strrchr(buf, '\t')=' ';
/* remove second tab (before class) */
if(strrchr(buf, '\t')) *strrchr(buf, '\t')=' ';
return strdup(buf);
}