diff options
author | Xinchen Hui <laruence@php.net> | 2011-08-19 08:35:43 +0000 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2011-08-19 08:35:43 +0000 |
commit | 36bfb46ce66b5f7dbf3a52c379bac644ea012118 (patch) | |
tree | dbf89b2dc42242190cce7ada296be95547a206a5 /sapi/cli/php_cli_server.c | |
parent | c296c9148fd15c456f0506d4032bc9e3586e0e4c (diff) | |
download | php-git-36bfb46ce66b5f7dbf3a52c379bac644ea012118.tar.gz |
Fixed typo when syncing changes to branch
Diffstat (limited to 'sapi/cli/php_cli_server.c')
-rw-r--r-- | sapi/cli/php_cli_server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/cli/php_cli_server.c b/sapi/cli/php_cli_server.c index afd41541a3..71d83e9051 100644 --- a/sapi/cli/php_cli_server.c +++ b/sapi/cli/php_cli_server.c @@ -1411,7 +1411,7 @@ static void php_cli_server_client_populate_request_info(const php_cli_server_cli request_info->post_data = client->request.content; request_info->content_length = request_info->post_data_length = client->request.content_len; if (SUCCESS == zend_hash_find(&client->request.headers, "Content-Type", sizeof("Content-Type"), (void**)&val)) { - request_info->content_type = strtok(*val, delimiter); + request_info->content_type = *val; } } /* }}} */ |