about summary refs log tree commit diff
path: root/zshconfig.ac
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2001-07-02 11:33:26 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2001-07-02 11:33:26 +0000
commit0f960cc8cac71ff4fdc88a45603b105e469b6079 (patch)
treece32a9cb04df62a144c93cd37ea77e5b0d5d78d4 /zshconfig.ac
parent05fdd6fed2c736d28c63b595db5c2be4fabfd7a0 (diff)
downloadzsh-0f960cc8cac71ff4fdc88a45603b105e469b6079.tar.gz
zsh-0f960cc8cac71ff4fdc88a45603b105e469b6079.tar.xz
zsh-0f960cc8cac71ff4fdc88a45603b105e469b6079.zip
fix IRIX 5.3 specific compilation problems and some error messages (15204)
Diffstat (limited to 'zshconfig.ac')
-rw-r--r--zshconfig.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/zshconfig.ac b/zshconfig.ac
index c268366ae..78fb6404e 100644
--- a/zshconfig.ac
+++ b/zshconfig.ac
@@ -1305,7 +1305,7 @@ main()
     if(pid < 0)
 	exit(1);
     if(pid) {
-	fd = open("/tmp/fifo$$", O_RDWR);
+	fd = open("/tmp/fifo$$", O_RDONLY);
 	exit(fd < 0 || read(fd, &c, 1) != 1 || c != 'x');
     }
     fd = open("/tmp/fifo$$", O_WRONLY);