tony2001 Thu Aug 31 15:42:18 2006 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/pcntl pcntl.c Log: fix typo in errmsg http://cvs.php.net/viewvc.cgi/php-src/ext/pcntl/pcntl.c?r1=1.48.2.2.2.2&r2=1.48.2.2.2.3&diff_format=u Index: php-src/ext/pcntl/pcntl.c diff -u php-src/ext/pcntl/pcntl.c:1.48.2.2.2.2 php-src/ext/pcntl/pcntl.c:1.48.2.2.2.3 --- php-src/ext/pcntl/pcntl.c:1.48.2.2.2.2 Thu Jun 15 18:33:08 2006 +++ php-src/ext/pcntl/pcntl.c Thu Aug 31 15:42:18 2006 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: pcntl.c,v 1.48.2.2.2.2 2006/06/15 18:33:08 dmitry Exp $ */ +/* $Id: pcntl.c,v 1.48.2.2.2.3 2006/08/31 15:42:18 tony2001 Exp $ */ #define PCNTL_DEBUG 0 @@ -549,7 +549,7 @@ /* Special long value case for SIG_DFL and SIG_IGN */ if (Z_TYPE_P(handle)==IS_LONG) { if (Z_LVAL_P(handle)!= (long) SIG_DFL && Z_LVAL_P(handle) != (long) SIG_IGN) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid value for handle argument specifEied"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid value for handle argument specified"); } if (php_signal(signo, (Sigfunc *) Z_LVAL_P(handle), (int) restart_syscalls) == SIG_ERR) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error assigning signal");
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php