Merge branch 'obsd-master'

This commit is contained in:
Thomas Adam
2025-09-02 02:01:07 +01:00

1
tty.c
View File

@ -326,6 +326,7 @@ tty_start_start_timer(struct tty *tty)
struct timeval tv = { .tv_sec = TTY_QUERY_TIMEOUT };
log_debug("%s: start timer started", c->name);
evtimer_del(&tty->start_timer);
evtimer_set(&tty->start_timer, tty_start_timer_callback, tty);
evtimer_add(&tty->start_timer, &tv);
}