summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcls%seawood.org <devnull@localhost>1999-08-20 16:21:46 +0000
committercls%seawood.org <devnull@localhost>1999-08-20 16:21:46 +0000
commitb5128ecb89a830ca12c571d73990cf55901ded66 (patch)
tree406b16a88c1ad9c8505678af1951c2974cd01ac2
parent9c07a161fd25668f33d35642710ab40b8da265b8 (diff)
downloadnspr-hg-unlabeled-3.14.8.tar.gz
Merged with HEAD from 8/18 or so.unlabeled-3.14.8
-rw-r--r--pr/src/md/unix/unix_errors.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/pr/src/md/unix/unix_errors.c b/pr/src/md/unix/unix_errors.c
index e33dbe8b..c3321cf3 100644
--- a/pr/src/md/unix/unix_errors.c
+++ b/pr/src/md/unix/unix_errors.c
@@ -42,7 +42,10 @@ static void _MD_unix_map_default_error(int err)
case EAGAIN:
prError = PR_WOULD_BLOCK_ERROR;
break;
-#ifndef QNX
+ /*
+ * On QNX and Neutrino, EALREADY is defined as EBUSY.
+ */
+#if EALREADY != EBUSY
case EALREADY:
prError = PR_ALREADY_INITIATED_ERROR;
break;