hyanantha Thu Jul 28 05:41:34 2005 EDT Modified files: /php-src/ext/standard mail.c Log: defined EX_OK and EX_TEMPFAIL in ext/standard/mail.c for NETWARE rather than including a sysexits.h. -Kamesh http://cvs.php.net/diff.php/php-src/ext/standard/mail.c?r1=1.84&r2=1.85&ty=u Index: php-src/ext/standard/mail.c diff -u php-src/ext/standard/mail.c:1.84 php-src/ext/standard/mail.c:1.85 --- php-src/ext/standard/mail.c:1.84 Sat Sep 25 10:48:44 2004 +++ php-src/ext/standard/mail.c Thu Jul 28 05:41:34 2005 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: mail.c,v 1.84 2004/09/25 14:48:44 hyanantha Exp $ */ +/* $Id: mail.c,v 1.85 2005/07/28 09:41:34 hyanantha Exp $ */ #include <stdlib.h> #include <ctype.h> @@ -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) \
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php