From ed556962f2e624e04b61980eff365cbcd81220bc Mon Sep 17 00:00:00 2001 From: Jack-Benny Persson Date: Mon, 15 Apr 2013 01:10:28 +0200 Subject: [PATCH] Changed echo to fwrite and added some spaces at the end --- check_md5.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/check_md5.php b/check_md5.php index 1e7e175..3923b89 100755 --- a/check_md5.php +++ b/check_md5.php @@ -56,7 +56,7 @@ function print_version() { global $argv, $argc; global $VERSION; - echo "$argv[0] $VERSION\n"; + fwrite(STDOUT, "$argv[0] $VERSION\n"); } function print_help() @@ -196,6 +196,8 @@ else // Fail as unknown, something went haywire // Catch all and fail with unknown state exit($STATE_UNKNOWN); + + ?>