sniper          Fri Jan 23 02:02:55 2004 EDT

  Modified files:              (Branch: PHP_4_3)
    /php-src/ext/pcntl  pcntl.c 
  Log:
  MFH: typofix
  
http://cvs.php.net/diff.php/php-src/ext/pcntl/pcntl.c?r1=1.28.4.3&r2=1.28.4.4&ty=u
Index: php-src/ext/pcntl/pcntl.c
diff -u php-src/ext/pcntl/pcntl.c:1.28.4.3 php-src/ext/pcntl/pcntl.c:1.28.4.4
--- php-src/ext/pcntl/pcntl.c:1.28.4.3  Thu Jun  5 19:48:17 2003
+++ php-src/ext/pcntl/pcntl.c   Fri Jan 23 02:02:54 2004
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: pcntl.c,v 1.28.4.3 2003/06/05 23:48:17 iliaa Exp $ */
+/* $Id: pcntl.c,v 1.28.4.4 2004/01/23 07:02:54 sniper Exp $ */
 
 #define PCNTL_DEBUG 0
 
@@ -473,7 +473,7 @@
                        php_error(E_WARNING, "Invalid value for handle argument 
specifEied in %s", get_active_function_name(TSRMLS_C));
                }
                if (php_signal(signo, (Sigfunc *) Z_LVAL_P(handle), (int) 
restart_syscalls) == SIG_ERR) {
-                       php_error(E_WARNING, "Error assigning singal in %s", 
get_active_function_name(TSRMLS_C));
+                       php_error(E_WARNING, "Error assigning signal in %s", 
get_active_function_name(TSRMLS_C));
                        RETURN_FALSE;
                }
                RETURN_TRUE;
@@ -491,7 +491,7 @@
        if (dest_handle) zval_add_ref(dest_handle);
        
        if (php_signal(signo, pcntl_signal_handler, (int) restart_syscalls) == 
SIG_ERR) {
-               php_error(E_WARNING, "Error assigning singal in %s", 
get_active_function_name(TSRMLS_C));
+               php_error(E_WARNING, "Error assigning signal in %s", 
get_active_function_name(TSRMLS_C));
                RETURN_FALSE;
        }
        RETURN_TRUE;
@@ -547,7 +547,7 @@
 
                ZVAL_LONG(param, *signal_num);
                
-               /* Call php singal handler - Note that we do not report errors, and we 
ignore the eturn value */
+               /* Call php signal handler - Note that we do not report errors, and we 
ignore the eturn value */
                call_user_function(EG(function_table), NULL, *handle, retval, 1, 
&param TSRMLS_CC);
        }
        /* Clear */

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to