summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg_prompt.c
diff options
context:
space:
mode:
authorJoe Watkins <krakjoe@php.net>2016-11-12 17:30:16 +0000
committerJoe Watkins <krakjoe@php.net>2016-11-12 17:30:16 +0000
commit6c0e1ca4fa31a860a363abecd6376d99edff8833 (patch)
treefa96aacab864369ef22c139d9d26de914f09483e /sapi/phpdbg/phpdbg_prompt.c
parent3ed8b7a87b5383f9ba99a0bbcea6e9fe7a070946 (diff)
downloadphp-git-6c0e1ca4fa31a860a363abecd6376d99edff8833.tar.gz
update phpdbg with stdin code change
Diffstat (limited to 'sapi/phpdbg/phpdbg_prompt.c')
-rw-r--r--sapi/phpdbg/phpdbg_prompt.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sapi/phpdbg/phpdbg_prompt.c b/sapi/phpdbg/phpdbg_prompt.c
index 36d947b57f..1d95afc960 100644
--- a/sapi/phpdbg/phpdbg_prompt.c
+++ b/sapi/phpdbg/phpdbg_prompt.c
@@ -528,7 +528,7 @@ int phpdbg_compile_stdin(zend_string *code) {
ZVAL_STR(&zv, code);
- PHPDBG_G(ops) = zend_compile_string(&zv, "-");
+ PHPDBG_G(ops) = zend_compile_string(&zv, "Standard input code");
zend_string_release(code);
@@ -539,7 +539,7 @@ int phpdbg_compile_stdin(zend_string *code) {
if (PHPDBG_G(exec)) {
efree(PHPDBG_G(exec));
}
- PHPDBG_G(exec) = estrdup("-");
+ PHPDBG_G(exec) = estrdup("Standard input code");
PHPDBG_G(exec_len) = 1;
{ /* remove leading ?> from source */
int i;
@@ -549,11 +549,11 @@ int phpdbg_compile_stdin(zend_string *code) {
PHPDBG_G(file_sources).pDestructor = NULL;
zend_hash_del(&PHPDBG_G(file_sources), source_path);
PHPDBG_G(file_sources).pDestructor = dtor;
- zend_hash_str_update_ptr(&PHPDBG_G(file_sources), "-", 1, data);
+ zend_hash_str_update_ptr(&PHPDBG_G(file_sources), "Standard input code", 1, data);
zend_string_release(source_path);
efree(data->filename);
- data->filename = estrdup("-");
+ data->filename = estrdup("Standard input code");
for (i = 1; i <= data->lines; i++) {
data->line[i] -= 2;