From 83b5eb54c4b8d868f94a7473ffeca96e7877793b Mon Sep 17 00:00:00 2001 From: Anantha Kesari H Y Date: Thu, 28 Jul 2005 09:41:34 +0000 Subject: [PATCH] defined EX_OK and EX_TEMPFAIL in ext/standard/mail.c for NETWARE rather than including a sysexits.h. -Kamesh --- ext/standard/mail.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ext/standard/mail.c b/ext/standard/mail.c index 461acc59b0..ab51be2f5d 100644 --- a/ext/standard/mail.c +++ b/ext/standard/mail.c @@ -42,7 +42,8 @@ #endif #ifdef NETWARE -#include "netware/sysexits.h" /* For exit status codes like EX_OK */ +#define EX_OK 0 /* successful termination */ +#define EX_TEMPFAIL 75 /* temp failure; user is invited to retry */ #endif #define SKIP_LONG_HEADER_SEP(str, pos) \ -- 2.40.0