summaryrefslogtreecommitdiff
path: root/prober/cache_prober.go
diff options
context:
space:
mode:
Diffstat (limited to 'prober/cache_prober.go')
-rw-r--r--prober/cache_prober.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/prober/cache_prober.go b/prober/cache_prober.go
index 94adeb0..7b7890d 100644
--- a/prober/cache_prober.go
+++ b/prober/cache_prober.go
@@ -27,7 +27,7 @@ func RecursiveCacheProbe(ip string, sld string) CacheStruct {
}
subdomain := strings.Join([]string{strings.Replace(ip, ".", "-", -1), "fwd", strconv.Itoa(i), time_now}, "-")
domain := dns.Fqdn(subdomain + "." + sld)
- res, err := utils.SendQuery(ip, domain)
+ res, err := utils.SendAQuery(ip, domain)
if err != nil {
//fmt.Printf("Error sending query: %s\n", err)
stop += 1