[nexuiz-commits] r8463 - trunk/data/qcsrc/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Tue Dec 29 06:15:03 EST 2009


Author: div0
Date: 2009-12-29 06:15:02 -0500 (Tue, 29 Dec 2009)
New Revision: 8463

Modified:
   trunk/data/qcsrc/server/ipban.qc
Log:
fix missing newlines in banlist print


Modified: trunk/data/qcsrc/server/ipban.qc
===================================================================
--- trunk/data/qcsrc/server/ipban.qc	2009-12-29 06:37:57 UTC (rev 8462)
+++ trunk/data/qcsrc/server/ipban.qc	2009-12-29 11:15:02 UTC (rev 8463)
@@ -121,13 +121,13 @@
 
 	if(substring(data, 0, 1) == "<")
 	{
-		print("error: received HTML instead of a ban list: ");
+		print("error: received HTML instead of a ban list\n");
 		return;
 	}
 
 	if(strstrofs(data, "\r", 0) != -1)
 	{
-		print("error: received carriage returns: ");
+		print("error: received carriage returns\n");
 		return;
 	}
 



More information about the nexuiz-commits mailing list