Skip to content

Commit

Permalink
Enhance error message
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelortmann committed Dec 18, 2024
1 parent 80bca41 commit 78cb260
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mod/server.mod/tclserv.c
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ static int tcl_server STDVAR {
BADARGS(2, 5, " subcommand ?host ?port? ?password?");
if (!strcmp(argv[1], "add")) {
if (argc < 3) {
Tcl_SetResult(irp, "Subcommand add needs at least a server host", TCL_STATIC);
Tcl_SetResult(irp, "wrong # args: should be \"server add host ?port? ?password?\"", TCL_STATIC);
return TCL_ERROR;
}
ret = add_server(argv[2], argc >= 4 && argv[3] ? argv[3] : "", argc >= 5 && argv[4] ? argv[4] : "");
Expand All @@ -604,7 +604,7 @@ static int tcl_server STDVAR {
}
} else if (!strcmp(argv[1], "remove")) {
if (argc < 3) {
Tcl_SetResult(irp, "Subcommand remove needs at least a server host", TCL_STATIC);
Tcl_SetResult(irp, "wrong # args: should be \"server remove host ?port? ?password?\"", TCL_STATIC);
return TCL_ERROR;
}
ret = del_server(argv[2], argc >= 4 && argv[3] ? argv[3] : "");
Expand Down

0 comments on commit 78cb260

Please sign in to comment.