]> granicus.if.org Git - php/commitdiff
defined EX_OK and EX_TEMPFAIL in ext/standard/mail.c for NETWARE rather than includin...
authorAnantha Kesari H Y <hyanantha@php.net>
Thu, 28 Jul 2005 09:41:34 +0000 (09:41 +0000)
committerAnantha Kesari H Y <hyanantha@php.net>
Thu, 28 Jul 2005 09:41:34 +0000 (09:41 +0000)
-Kamesh

ext/standard/mail.c

index 461acc59b09afa5edd7e1625e789fd0e23190d77..ab51be2f5d647d6147b21898f23a7a1409121d32 100644 (file)
@@ -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)                                                                         \