summaryrefslogtreecommitdiff
path: root/sapi/cli/php_cli_server.c
diff options
context:
space:
mode:
authorPhilip Olson <philip@php.net>2011-06-30 23:50:56 +0000
committerPhilip Olson <philip@php.net>2011-06-30 23:50:56 +0000
commit18e0f8a4893c3a01ccfa1178f4587436c4ea1b2f (patch)
treeb2bb4edf9c5b88a7bb8c7b6e773aa5ce4e112cff /sapi/cli/php_cli_server.c
parent404686447bbdbe19141882009e34ee2577744260 (diff)
downloadphp-git-18e0f8a4893c3a01ccfa1178f4587436c4ea1b2f.tar.gz
Updated name to 'PHP Development Server', and CTRL-C to Ctrl-C, as per PHP bug #55071
Diffstat (limited to 'sapi/cli/php_cli_server.c')
-rw-r--r--sapi/cli/php_cli_server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/cli/php_cli_server.c b/sapi/cli/php_cli_server.c
index 1eec3a4f1b..ab2dc6c32b 100644
--- a/sapi/cli/php_cli_server.c
+++ b/sapi/cli/php_cli_server.c
@@ -2081,7 +2081,7 @@ int do_cli_server(int argc, char **argv TSRMLS_DC) /* {{{ */
}
sapi_module.phpinfo_as_text = 0;
- printf("Server is listening on %s:%d in %s ... Press CTRL-C to quit.\n", server.host, server.port, document_root);
+ printf("PHP Development Server is listening on %s:%d in %s ... Press Ctrl-C to quit.\n", server.host, server.port, document_root);
#if defined(HAVE_SIGNAL_H) && defined(SIGINT)
signal(SIGINT, php_cli_server_sigint_handler);