Fix(dns): Incorrect variable name

This commit is contained in:
Dreamacro 2019-07-14 23:16:52 +08:00
parent 1a21c8ebfd
commit c1b5e4f561

View File

@ -19,7 +19,7 @@ func withFakeIP(cache *cache.Cache, pool *fakeip.Pool) handler {
q := r.Question[0]
cacheItem := cache.Get("fakeip:" + q.String())
if cache != nil {
if cacheItem != nil {
msg := cacheItem.(*D.Msg).Copy()
setMsgTTL(msg, 1)
msg.SetReply(r)