sniper Fri Jan 23 02:02:15 2004 EDT
Modified files:
/php-src/ext/pcntl pcntl.c
Log:
typofix (thanks to Mehdi Achour for noticing this)
http://cvs.php.net/diff.php/php-src/ext/pcntl/pcntl.c?r1=1.42&r2=1.43&ty=u
Index: php-src/ext/pcntl/pcntl.c
diff -u php-src/ext/pcntl/pcntl.c:1.42 php-src/ext/pcntl/pcntl.c:1.43
--- php-src/ext/pcntl/pcntl.c:1.42 Thu Jan 8 03:16:44 2004
+++ php-src/ext/pcntl/pcntl.c Fri Jan 23 02:02:15 2004
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: pcntl.c,v 1.42 2004/01/08 08:16:44 andi Exp $ */
+/* $Id: pcntl.c,v 1.43 2004/01/23 07:02:15 sniper Exp $ */
#define PCNTL_DEBUG 0
@@ -520,7 +520,7 @@
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid value for
handle argument specifEied");
}
if (php_signal(signo, (Sigfunc *) Z_LVAL_P(handle), (int)
restart_syscalls) == SIG_ERR) {
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error assigning
singal");
+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error assigning
signal");
RETURN_FALSE;
}
RETURN_TRUE;
@@ -538,7 +538,7 @@
if (dest_handle) zval_add_ref(dest_handle);
if (php_signal(signo, pcntl_signal_handler, (int) restart_syscalls) ==
SIG_ERR) {
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error assigning singal");
+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error assigning signal");
RETURN_FALSE;
}
RETURN_TRUE;
@@ -671,7 +671,7 @@
ZVAL_LONG(param, *signal_num);
- /* Call php singal handler - Note that we do not report errors, and we
ignore the return value */
+ /* Call php signal handler - Note that we do not report errors, and we
ignore the return value */
call_user_function(EG(function_table), NULL, *handle, retval, 1,
¶m TSRMLS_CC);
}
/* Clear */
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php