#include "fde.h"
#include "ip/tools.h"
#include "MemBuf.h"
-
+#include "util.h"
#include "wordlist.h"
#if HAVE_ARPA_NAMESER_H
assert(npc < npc_alloc);
strcpy(searchpath[npc].domain, buf);
+ Tolower(searchpath[npc].domain);
debugs(78, 3, "idnsAddPathComponent: Added domain #" << npc << ": " << searchpath[npc].domain);
npc++;
}
while (hostnames) {
fce->names[j] = xstrdup(hostnames->key);
+ Tolower(fce->names[j]);
j++;
hostnames = hostnames->next;
static ipcache_entry *i;
i = (ipcache_entry *)memAllocate(MEM_IPCACHE_ENTRY);
i->hash.key = xstrdup(name);
+ Tolower(static_cast<char*>(i->hash.key));
i->expires = squid_curtime + Config.negativeDnsTtl;
return i;
}