[quake3-commits] r1786 - trunk/code/server
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Mon Jun 21 03:11:55 EDT 2010
Author: ludwig
Date: 2010-06-21 03:11:52 -0400 (Mon, 21 Jun 2010)
New Revision: 1786
Modified:
trunk/code/server/sv_main.c
Log:
fix typo
Modified: trunk/code/server/sv_main.c
===================================================================
--- trunk/code/server/sv_main.c 2010-06-02 14:46:16 UTC (rev 1785)
+++ trunk/code/server/sv_main.c 2010-06-21 07:11:52 UTC (rev 1786)
@@ -693,7 +693,7 @@
// Prevent using rcon as an amplifier and make dictionary attacks impractical
if ( SVC_RateLimitAddress( from, 10, 1000 ) ) {
- Com_DPrintf( "SVC_Status: rate limit from %s exceeded, dropping request\n",
+ Com_DPrintf( "SVC_RemoteCommand: rate limit from %s exceeded, dropping request\n",
NET_AdrToString( from ) );
return;
}
@@ -704,7 +704,7 @@
// Make DoS via rcon impractical
if ( SVC_RateLimit( &bucket, 10, 1000 ) ) {
- Com_DPrintf( "SVC_Status: rate limit exceeded, dropping request\n" );
+ Com_DPrintf( "SVC_RemoteCommand: rate limit exceeded, dropping request\n" );
return;
}
More information about the quake3-commits
mailing list