diff --git a/code/qcommon/common.c b/code/qcommon/common.c index 0c7fd1bf..d38bf284 100644 --- a/code/qcommon/common.c +++ b/code/qcommon/common.c @@ -509,8 +509,8 @@ qboolean Com_AddStartupCommands( void ) { //============================================================================ void Info_Print( const char *s ) { - char key[512]; - char value[512]; + char key[BIG_INFO_KEY]; + char value[BIG_INFO_VALUE]; char *o; int l; @@ -530,7 +530,7 @@ void Info_Print( const char *s ) { } else *o = 0; - Com_Printf ("%s", key); + Com_Printf ("%s ", key); if (!*s) { diff --git a/code/server/sv_ccmds.c b/code/server/sv_ccmds.c index 3eb7e9e5..6cf5c899 100644 --- a/code/server/sv_ccmds.c +++ b/code/server/sv_ccmds.c @@ -1199,7 +1199,7 @@ Examine or change the serverinfo string */ static void SV_Systeminfo_f( void ) { Com_Printf ("System info settings:\n"); - Info_Print ( Cvar_InfoString( CVAR_SYSTEMINFO ) ); + Info_Print ( Cvar_InfoString_Big( CVAR_SYSTEMINFO ) ); }