Fix "it's" typo in log message

Signed-off-by: Steve Huff <shuff@vecna.org>
This commit is contained in:
Steve Huff 2019-03-29 15:35:05 +00:00
parent 4f67c80da1
commit abd0159b0f

View File

@ -67,7 +67,7 @@ func updateDomainWithCName(r *dns.Msg, fqdn string) string {
for _, rr := range r.Answer {
if cn, ok := rr.(*dns.CNAME); ok {
if cn.Hdr.Name == fqdn {
klog.Infof("Updating FQDN: %s with it's CNAME: %s", fqdn, cn.Target)
klog.Infof("Updating FQDN: %s with its CNAME: %s", fqdn, cn.Target)
fqdn = cn.Target
break
}