--- internal.c Tue Aug 29 16:31:34 2000 +++ internal.c.new Tue Aug 29 16:30:47 2000 @@ -98,6 +98,9 @@ /* convert host name to lower case */ xstrncpy(lc_host, host, sizeof(lc_host)); Tolower(lc_host); + /* append the domain in order to mirror requests with appended domains */ + if (Config.appendDomain && !strchr(lc_host, '.')) + strncat(lc_host, Config.appendDomain, SQUIDHOSTNAMELEN); /* build uri in mb */ memBufReset(&mb); memBufPrintf(&mb, "http://%s", lc_host);