1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2024-11-29 00:24:13 +01:00

Use echo in all munin php plugins.

This commit is contained in:
Jean Paul Galea 2015-09-08 14:34:55 +02:00
parent 3896a7a72b
commit adf9a7f833
2 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ $shortnames = array_map('short_name', $urls);
if ($argc == 2 && strcmp($argv[1], "autoconf") == 0)
{
print "yes\n";
echo "yes\n";
exit(0);
}

View File

@ -53,11 +53,11 @@ if ($argc == 2 && strcmp($argv[1], "autoconf") == 0)
{
if (is_array($urls) && count($urls) > 0)
{
print "yes\n";
echo "yes\n";
exit(0);
}
print "no (sync pool not configured)\n";
echo "no (sync pool not configured)\n";
exit(0);
}