aboutsummaryrefslogtreecommitdiff
path: root/src/dirax.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-03-05 10:42:30 +0100
committerThomas White <taw@physics.org>2010-03-05 10:42:30 +0100
commit0f9498ed84f7b63c58e23012256fce1e3c46439c (patch)
treecc649c328dcc74e30dac51b50d3c82435849a0a2 /src/dirax.c
parent18e4d938c574394ca6fafe593359317062a0bbe7 (diff)
More generous timeout for DirAx
Diffstat (limited to 'src/dirax.c')
-rw-r--r--src/dirax.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dirax.c b/src/dirax.c
index 7b1322f2..a9288f2f 100644
--- a/src/dirax.c
+++ b/src/dirax.c
@@ -351,7 +351,7 @@ void run_dirax(struct image *image)
FD_ZERO(&fds);
FD_SET(image->dirax_pty, &fds);
- tv.tv_sec = 1;
+ tv.tv_sec = 10;
tv.tv_usec = 0;
sval = select(image->dirax_pty+1, &fds, NULL, NULL, &tv);