ipc: Return error message on unknown command

This commit is contained in:
Kim Woelders 2022-03-10 06:47:50 +01:00
parent f633be2c70
commit 799b267f28
1 changed files with 3 additions and 0 deletions

View File

@ -1847,6 +1847,9 @@ IpcExec(const char *params)
if (!ok && params)
ok = IPC_Compat(params);
if (!ok)
IpcPrintf("Unknown command: '%s'\n", params);
return ok;
}