From: divverent Date: Thu, 19 Jan 2012 22:51:21 +0000 (+0000) Subject: Revert "note that in some cases, crypto_aeslevel changes need crypto_reload to apply... X-Git-Tag: xonotic-v0.6.0~61 X-Git-Url: http://git.xonotic.org/?a=commitdiff_plain;ds=sidebyside;h=4a2751cc01cda5a65a0a5ecd87ea5217db27a8bf;p=xonotic%2Fdarkplaces.git Revert "note that in some cases, crypto_aeslevel changes need crypto_reload to apply (namely, for the server info string)" because I am stupid, this is already solved by code editing the first character This reverts commit 9a55aaeb89cf823297d40821f9558daed16c87f1. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11651 d7cf8633-e32d-0410-b094-e92efae38249 ::stable-branch::merge=f09e3c2f3b646a14e46af6a673743a0503cc6ce5 --- diff --git a/crypto.c b/crypto.c index 85c1caac..dd7fc885 100644 --- a/crypto.c +++ b/crypto.c @@ -13,7 +13,7 @@ cvar_t crypto_servercpumaxtime = {CVAR_SAVE, "crypto_servercpumaxtime", "0.01", cvar_t crypto_servercpudebug = {CVAR_SAVE, "crypto_servercpudebug", "0", "print statistics about time usage by crypto"}; static double crypto_servercpu_accumulator = 0; static double crypto_servercpu_lastrealtime = 0; -cvar_t crypto_aeslevel = {CVAR_SAVE, "crypto_aeslevel", "1", "whether to support AES encryption in authenticated connections (0 = no, 1 = supported, 2 = requested, 3 = required); changing this may require crypto_reload to fully apply"}; +cvar_t crypto_aeslevel = {CVAR_SAVE, "crypto_aeslevel", "1", "whether to support AES encryption in authenticated connections (0 = no, 1 = supported, 2 = requested, 3 = required)"}; int crypto_keyfp_recommended_length; static const char *crypto_idstring = NULL; static char crypto_idstring_buf[512];