Bring back r226403, the fix for bin/161526, which was (accidentally?)
reverted in r238896. PR: bin/161526 Reported by: Karli.Sjoberg slu.se MFC after: 3 days
This commit is contained in:
parent
3cb44b3f65
commit
29f4384a31
@ -238,12 +238,15 @@ main(int argc, char *argv[])
|
||||
FD_SET(master, &rfd);
|
||||
if (readstdin)
|
||||
FD_SET(STDIN_FILENO, &rfd);
|
||||
if ((!readstdin && ttyflg) || flushtime > 0) {
|
||||
tv.tv_sec = !readstdin && ttyflg ? 1 :
|
||||
flushtime - (tvec - start);
|
||||
if (!readstdin && ttyflg) {
|
||||
tv.tv_sec = 1;
|
||||
tv.tv_usec = 0;
|
||||
tvp = &tv;
|
||||
readstdin = 1;
|
||||
} else if (flushtime > 0) {
|
||||
tv.tv_sec = flushtime - (tvec - start);
|
||||
tv.tv_usec = 0;
|
||||
tvp = &tv;
|
||||
} else {
|
||||
tvp = NULL;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user