Doesn't seem to warrant using the issue tracker... diff --git a/code/server/sv_main.c b/code/server/sv_main.c index a1106d1..bc3a049 100644 --- a/code/server/sv_main.c +++ b/code/server/sv_main.c @@ -696,7 +696,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; } @@ -707,7 +707,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; } _______________________________________________ ioquake3 mailing list ioquake3@lists.ioquake.org http://lists.ioquake.org/listinfo.cgi/ioquake3-ioquake.org By sending this message I agree to love ioquake3 and libsdl.