From: havoc Date: Wed, 22 Jan 2020 10:58:02 +0000 (+0000) Subject: Fix one typo on rcon_secure_maxdiff - added CVAR_SAVE accidentally during the massive... X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=commitdiff_plain;h=6409a7e5e301f4a8eb00dbe292291231ebf25d49 Fix one typo on rcon_secure_maxdiff - added CVAR_SAVE accidentally during the massive manual edits. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12509 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/netconn.c b/netconn.c index 54e6ade9..7360b358 100755 --- a/netconn.c +++ b/netconn.c @@ -100,7 +100,7 @@ static cvar_t gameversion_min = {CVAR_CLIENT, "gameversion_min", "-1", "minimum static cvar_t gameversion_max = {CVAR_CLIENT, "gameversion_max", "-1", "maximum version of game data (mod-specific), when client and server gameversion mismatch in the server browser the server is shown as incompatible; if -1, gameversion is used alone"}; static cvar_t rcon_restricted_password = {CVAR_SERVER | CVAR_PRIVATE, "rcon_restricted_password", "", "password to authenticate rcon commands in restricted mode; may be set to a string of the form user1:pass1 user2:pass2 user3:pass3 to allow multiple user accounts - the client then has to specify ONE of these combinations"}; static cvar_t rcon_restricted_commands = {CVAR_SERVER, "rcon_restricted_commands", "", "allowed commands for rcon when the restricted mode password was used"}; -static cvar_t rcon_secure_maxdiff = {CVAR_SERVER | CVAR_SAVE, "rcon_secure_maxdiff", "5", "maximum time difference between rcon request and server system clock (to protect against replay attack)"}; +static cvar_t rcon_secure_maxdiff = {CVAR_SERVER, "rcon_secure_maxdiff", "5", "maximum time difference between rcon request and server system clock (to protect against replay attack)"}; extern cvar_t rcon_secure; extern cvar_t rcon_secure_challengetimeout;