TMXR: Accept names when establishing listen sockets as originally intended
Problem found while testing solution for the problem reported in #767
This commit is contained in:
parent
23856afcac
commit
3c9efd7fdb
1 changed files with 4 additions and 2 deletions
|
@ -2745,8 +2745,10 @@ while (*tptr) {
|
|||
else
|
||||
if (0 == MATCH_CMD (cptr, "TELNET"))
|
||||
listennotelnet = FALSE;
|
||||
else
|
||||
return sim_messagef (SCPE_ARG, "Invalid Specifier: %s\n", tptr);
|
||||
else {
|
||||
if (*tptr)
|
||||
return sim_messagef (SCPE_ARG, "Invalid Specifier: %s\n", tptr);
|
||||
}
|
||||
}
|
||||
cptr = init_cptr;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue