Change log messages issued for IP address forgeries

This commit is contained in:
Alexander Barton 2014-12-10 11:01:51 +01:00
parent 31b3c83c1f
commit 7e14bd3b58
1 changed files with 4 additions and 2 deletions

View File

@ -334,14 +334,16 @@ static void
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);
}