Log_Forgery_NoIP(const char *ip, const char *host)
{
Log_Subprocess(LOG_WARNING,
- "Possible forgery: %s resolved to %s (which has no ip address)", ip, host);
+ "Possible forgery: %s resolved to \"%s\", which has no IP address!",
+ ip, host);
}
static void
Log_Forgery_WrongIP(const char *ip, const char *host)
{
Log_Subprocess(LOG_WARNING,
- "Possible forgery: %s resolved to %s (which points to different address)", ip, host);
+ "Possible forgery: %s resolved to \"%s\", which points to a different address!",
+ ip, host);
}