forked from Telodendria/Telodendria
Fix compiler warning on some platforms.
This commit is contained in:
parent
94493e6ad8
commit
b8027e1aaf
1 changed files with 1 additions and 1 deletions
|
@ -432,7 +432,7 @@ MatrixAuthenticate(HttpServerContext * context, Db * db)
|
|||
token += 8;
|
||||
|
||||
/* Seek past any spaces between "Bearer" and the token */
|
||||
while (*token && isspace(*token))
|
||||
while (*token && isspace((unsigned char) *token))
|
||||
{
|
||||
token++;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue