Renamed --char-delay to --output-delay

Renaming to make the naming more specific for the feature.
This commit is contained in:
Martin Lund 2015-04-18 11:37:03 +03:00
parent ab54352b51
commit 4eaff1df9d
6 changed files with 23 additions and 13 deletions

View file

@ -235,9 +235,9 @@ int connect_tty(void)
/* Forward input to tty device */
status = write(fd, &c_stdin[0], 1);
/* Insert char delay */
if (option.char_delay)
usleep(option.char_delay * 1000);
/* Insert output delay */
if (option.output_delay)
usleep(option.output_delay * 1000);
}
}