Commit Diff


commit - 31b3c83c1f1b18fa1ed0501e95ed8e5f6cc6d407
commit + 7e14bd3b58522ac34f0af29182248df1577d99c9
blob - be41ec8a97517087840444321c520e4a4adc2f3b
blob + 0d6a294e114865b307df0012d7e88cc6adeb2115
--- src/ngircd/resolve.c
+++ 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);
 }