ndb/dns: fix wrong ndb attribute "txtrr" vs. "txt" for caching server
This commit is contained in:
parent
87a823332f
commit
41369692bf
1 changed files with 1 additions and 1 deletions
|
@ -613,7 +613,7 @@ dbpair2cache(DN *dp, Ndbtuple *entry, Ndbtuple *pair)
|
|||
rp = cnamerr(entry, pair);
|
||||
else if(strcmp(pair->attr, "nullrr") == 0)
|
||||
rp = nullrr(entry, pair);
|
||||
else if(strcmp(pair->attr, "txtrr") == 0)
|
||||
else if(strcmp(pair->attr, "txt") == 0)
|
||||
rp = txtrr(entry, pair);
|
||||
if(rp == nil)
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue