From: Jan Lehnardt Date: Wed, 13 Nov 2002 12:41:05 +0000 (+0000) Subject: - be more verbose X-Git-Tag: php-4.3.0RC1~35 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e95c7178cc93a15d04a10fd693cfd52ec8014bdb;p=php - be more verbose --- diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index a34ca225dc..80c1f7f689 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -651,7 +651,7 @@ int main(int argc, char *argv[]) if (!(file_handle.handle.fp = VCWD_FOPEN(script_file, "rb"))) { SG(headers_sent) = 1; SG(request_info).no_headers = 1; - PUTS("Could not open input file.\n"); + php_printf("Could not open input file: %s.\n", script_file); goto err; } file_handle.filename = script_file;