diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ngircd/resolve.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ngircd/resolve.c b/src/ngircd/resolve.c index be41ec8a..0d6a294e 100644 --- a/src/ngircd/resolve.c +++ b/src/ngircd/resolve.c @@ -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); } |