Compare commits

..

1 Commits

Author SHA1 Message Date
95aef7aa47 fix(cmd): ensure cmd_time stops iterating after matching option
All checks were successful
CI Code / Check spelling (pull_request) Successful in 22s
CI Code / Check coding style (pull_request) Successful in 37s
CI Code / Linux (arch) (pull_request) Successful in 9m53s
CI Code / Linux (ubuntu) (pull_request) Successful in 14m0s
CI Code / Linux (debian) (pull_request) Successful in 16m24s
2025-11-26 18:29:47 +03:00
2 changed files with 2 additions and 2 deletions

1
external/stabber vendored Submodule

Submodule external/stabber added at 3e5c220071

View File

@@ -139,9 +139,8 @@ static const struct cmd_t command_defs[] = {
"Show version and license information.")
},
// Max args: account + server <s> + port <p> + tls <t> + auth <a> = 9
{ CMD_PREAMBLE("/connect",
parse_args, 0, 9, NULL)
parse_args, 0, 7, NULL)
CMD_MAINFUNC(cmd_connect)
CMD_TAGS(
CMD_TAG_CONNECTION)