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:24:39 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2001-07-02 11:24:39 +0000
commit3dc6f517f2ee16aeb5fd3ca1c8d41b534851ffb1 (patch)
tree7f04f1c9d85cea9cbca29288e3b7271c946d857e /zshconfig.ac
parenta591ac043b2a5d8c76fe04a5e4c8ca08e3e59a2c (diff)
downloadzsh-3dc6f517f2ee16aeb5fd3ca1c8d41b534851ffb1.tar.gz
zsh-3dc6f517f2ee16aeb5fd3ca1c8d41b534851ffb1.tar.xz
zsh-3dc6f517f2ee16aeb5fd3ca1c8d41b534851ffb1.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 b36174f4c..d6d76bc78 100644
--- a/zshconfig.ac
+++ b/zshconfig.ac
@@ -1304,7 +1304,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);