Commit:    58f3c74e13a0c96b3826cbfd3115cab3a81c55e1
Author:    Carson McDonald <car...@ioncannon.net>         Sun, 3 Mar 2013 
10:44:46 -0500
Parents:   b572f07b6f4890789fa3c53f2e69f744a0fde15b
Branches:  master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=58f3c74e13a0c96b3826cbfd3115cab3a81c55e1

Log:
Fix a couple typos

Changed paths:
  M  main/main.c


Diff:
diff --git a/main/main.c b/main/main.c
index 325ef7e..a792fb6 100644
--- a/main/main.c
+++ b/main/main.c
@@ -1332,7 +1332,7 @@ PHPAPI int php_stream_open_for_zend_ex(const char 
*filename, zend_file_handle *h
                handle->handle.stream.reader  = 
(zend_stream_reader_t)_php_stream_read;
                handle->handle.stream.fsizer  = php_zend_stream_fsizer;
                handle->handle.stream.isatty  = 0;
-               /* can we mmap immeadiately? */
+               /* can we mmap immediately? */
                memset(&handle->handle.stream.mmap, 0, 
sizeof(handle->handle.stream.mmap));
                len = php_zend_stream_fsizer(stream TSRMLS_CC);
                if (len != 0
@@ -2182,7 +2182,7 @@ int php_module_startup(sapi_module_struct *sf, 
zend_module_entry *additional_mod
        zend_set_utility_values(&zuv);
        php_startup_sapi_content_types(TSRMLS_C);
 
-       /* startup extensions staticly compiled in */
+       /* startup extensions statically compiled in */
        if (php_register_internal_extensions_func(TSRMLS_C) == FAILURE) {
                php_printf("Unable to start builtin modules\n");
                return FAILURE;


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

Reply via email to