summaryrefslogtreecommitdiff
path: root/omapip/buffer.c
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>2001-04-09 01:15:19 +0000
committerTed Lemon <source@isc.org>2001-04-09 01:15:19 +0000
commit1bd180429998acf891b6cd37c972d5f7e3fe94c8 (patch)
treec4850ac1829b8637833dae044b3800cb38419444 /omapip/buffer.c
parent8bd346b5071819122e20fd91c1bc6097a3c950ba (diff)
downloadisc-dhcp-1bd180429998acf891b6cd37c972d5f7e3fe94c8.tar.gz
Parameterize use of EDQUOT for SCO.
Diffstat (limited to 'omapip/buffer.c')
-rw-r--r--omapip/buffer.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/omapip/buffer.c b/omapip/buffer.c
index 8888cbd0..867f88eb 100644
--- a/omapip/buffer.c
+++ b/omapip/buffer.c
@@ -483,7 +483,11 @@ isc_result_t omapi_connection_writer (omapi_object_t *h)
return ISC_R_SUCCESS;
else if (errno == EPIPE)
return ISC_R_NOCONN;
+#ifdef EDQUOT
else if (errno == EFBIG || errno == EDQUOT)
+#else
+ else if (errno == EFBIG)
+#endif
return ISC_R_NORESOURCES;
else if (errno == ENOSPC)
return ISC_R_NOSPACE;