summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--auto-virtserial.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/auto-virtserial.c b/auto-virtserial.c
index ea749f8..9503f74 100644
--- a/auto-virtserial.c
+++ b/auto-virtserial.c
@@ -1366,8 +1366,8 @@ int main(int argc, const char *argv[])
pollfd[0].fd = chardevs[1].sock;
pollfd[0].events = POLLIN;
- /* Wait for 40s max. to see if guest tries to reach us */
- ret = poll(pollfd, 1, 40000);
+ /* Wait for 90s max. to see if guest tries to reach us */
+ ret = poll(pollfd, 1, 90000);
if (ret == -1)
error(errno, errno, "poll %s", chardevs[1].path);
if (ret == 0) {