]> granicus.if.org Git - php/commitdiff
Speling
authorMarcus Boerger <helly@php.net>
Sun, 13 Apr 2003 20:12:54 +0000 (20:12 +0000)
committerMarcus Boerger <helly@php.net>
Sun, 13 Apr 2003 20:12:54 +0000 (20:12 +0000)
main/streams/streams.c

index e925aac7e5a853f0bc2e09bb2559b91af5b6a83b..2ab2619d24ad524374b31824d86ba3335792df88 100755 (executable)
@@ -238,7 +238,7 @@ fprintf(stderr, "stream_alloc: %s:%p persistent=%s\n", ops->label, ret, persiste
 }
 /* }}} */
 
-int _php_stream_free_persistend(list_entry *le, void *pStream TSRMLS_DC)
+int _php_stream_free_persistent(list_entry *le, void *pStream TSRMLS_DC)
 {
        return le->ptr == pStream;
 }
@@ -371,7 +371,7 @@ fprintf(stderr, "stream_free: %s:%p[%s] preserve_handle=%d release_cast=%d remov
 #endif
                if (stream->is_persistent) {
                        /* we don't work with *stream but need its value for comparison */
-                       zend_hash_apply_with_argument(&EG(persistent_list), (apply_func_arg_t) _php_stream_free_persistend, stream TSRMLS_CC);
+                       zend_hash_apply_with_argument(&EG(persistent_list), (apply_func_arg_t) _php_stream_free_persistent, stream TSRMLS_CC);
                }
        }