diff options
author | Thomas White <taw@physics.org> | 2010-03-05 10:42:30 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2010-03-05 10:42:30 +0100 |
commit | 0f9498ed84f7b63c58e23012256fce1e3c46439c (patch) | |
tree | cc649c328dcc74e30dac51b50d3c82435849a0a2 /src | |
parent | 18e4d938c574394ca6fafe593359317062a0bbe7 (diff) |
More generous timeout for DirAx
Diffstat (limited to 'src')
-rw-r--r-- | src/dirax.c | 2 |
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); |