client/Process: more strict syntax check

This commit is contained in:
Max Kellermann 2019-04-03 22:28:45 +02:00
parent f339a53e3c
commit 39baa4e364
1 changed files with 2 additions and 2 deletions

View File

@ -55,8 +55,8 @@ Client::ProcessCommandList(bool list_ok,
CommandResult
Client::ProcessLine(char *line) noexcept
{
if (IsUpperAlphaASCII(*line)) {
/* no valid MPD command begins with an upper case
if (!IsLowerAlphaASCII(*line)) {
/* all valid MPD commands begin with a lower case
letter; this could be a badly routed HTTP
request */
FormatWarning(client_domain,