typos in comments and other minor improvements

This commit is contained in:
Antony Dovgal 2006-08-10 13:44:00 +00:00
parent d04a797cc6
commit 3cf1565d90
3 changed files with 5 additions and 6 deletions

View File

@ -15,5 +15,5 @@ function test: mysqli_character_set_name
mysqli_close($link);
?>
--EXPECT--
string(6) "latin1"
--EXPECTF--
string(%d) "%s"

View File

@ -14,7 +14,6 @@ output_handler=
echo "\n";
/* Binary Data Test */
@unlink($pwd . '/passthru_test');
$cmd = $php . ' -n -r \"readfile(@getenv(\'TEST_PHP_EXECUTABLE\')); \"';
$cmd = $php . ' -n -r \' passthru("'.$cmd.'"); \' > '.$tmpfile ;

View File

@ -232,12 +232,12 @@ php_apache_sapi_register_variables(zval *track_vars_array TSRMLS_DC)
php_struct *ctx = SG(server_context);
const apr_array_header_t *arr = apr_table_elts(ctx->r->subprocess_env);
char *key, *val;
APR_ARRAY_FOREACH_OPEN(arr, key, val)
if (!val) val = "";
php_register_variable(key, val, track_vars_array TSRMLS_CC);
APR_ARRAY_FOREACH_CLOSE()
php_register_variable("PHP_SELF", ctx->r->uri, track_vars_array TSRMLS_CC);
}
@ -525,7 +525,7 @@ normal:
/* Setup the CGI variables if this is the main request */
if (r->main == NULL ||
/* .. or if the sub-request envinronment differs from the main-request. */
/* .. or if the sub-request environment differs from the main-request. */
r->subprocess_env != r->main->subprocess_env
) {
/* setup standard CGI variables */