Skip to content
This repository has been archived by the owner on Dec 8, 2018. It is now read-only.

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.icculus.org/quake3/trunk@1786 edf5b092-35ff-0310-97b2-ce42778d08ea
  • Loading branch information
ludwig committed Jun 21, 2010
1 parent 57ffcc2 commit c16bea6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/server/sv_main.c
Expand Up @@ -693,7 +693,7 @@ static void SVC_RemoteCommand( netadr_t from, msg_t *msg ) {

// 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;
}
Expand All @@ -704,7 +704,7 @@ static void SVC_RemoteCommand( netadr_t from, msg_t *msg ) {

// 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;
}

Expand Down

0 comments on commit c16bea6

Please sign in to comment.