SCP: Fixed SEND command to properly support a bare AFTER=n argument.
This commit is contained in:
parent
4eed007607
commit
45859ffe34
1 changed files with 2 additions and 2 deletions
4
scp.c
4
scp.c
|
@ -3280,7 +3280,7 @@ while (*cptr) {
|
|||
if ((!strncmp(gbuf, "AFTER=", 6)) && (gbuf[6])) {
|
||||
after = (uint32)get_uint (&gbuf[6], 10, 10000000, &r);
|
||||
if (r != SCPE_OK) {
|
||||
sim_printf ("Invalid Delay Value\n");
|
||||
sim_printf ("Invalid After Value\n");
|
||||
return SCPE_ARG|SCPE_NOMESSAGE;
|
||||
}
|
||||
cptr = tptr;
|
||||
|
@ -3305,7 +3305,7 @@ if (*cptr) {
|
|||
return SCPE_ARG|SCPE_NOMESSAGE;
|
||||
}
|
||||
}
|
||||
if ((dsize == 0) && (delay == 0))
|
||||
if ((dsize == 0) && (delay == 0) && (after == 0))
|
||||
return SCPE_2FARG;
|
||||
return sim_send_input (snd, dbuf, dsize, after, delay);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue