summaryrefslogtreecommitdiff
path: root/ext/pcntl
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-08-31 15:42:18 +0000
committerAntony Dovgal <tony2001@php.net>2006-08-31 15:42:18 +0000
commit5bc435c4e804bd7c6e4666e60f085e4fd344afcd (patch)
treee77a258358daa3d9038e889bfbd5b31ee7d919b7 /ext/pcntl
parent94b3210c38bc15fb03170dcb5671017bd292bd77 (diff)
downloadphp-git-5bc435c4e804bd7c6e4666e60f085e4fd344afcd.tar.gz
fix typo in errmsg
Diffstat (limited to 'ext/pcntl')
-rwxr-xr-xext/pcntl/pcntl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pcntl/pcntl.c b/ext/pcntl/pcntl.c
index c0e13c8380..2e63cc057b 100755
--- a/ext/pcntl/pcntl.c
+++ b/ext/pcntl/pcntl.c
@@ -549,7 +549,7 @@ PHP_FUNCTION(pcntl_signal)
/* 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");