mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 21:57:57 +03:00
Don't sanitize semicolon
This commit is contained in:
parent
b5875ae890
commit
528039f80b
1 changed files with 1 additions and 1 deletions
|
@ -620,7 +620,7 @@ void Cmd_Args_Sanitize(void)
|
|||
if(strlen(c) > MAX_CVAR_VALUE_STRING - 1)
|
||||
c[MAX_CVAR_VALUE_STRING - 1] = '\0';
|
||||
|
||||
while ((c = strpbrk(c, "\n\r;"))) {
|
||||
while ((c = strpbrk(c, "\n\r"))) {
|
||||
*c = ' ';
|
||||
++c;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue