1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2025-02-08 03:54:20 +01:00

Remove space after comma in csv output.

This commit is contained in:
Dain Nilsson 2013-06-11 16:10:51 +02:00
parent 91fa3b2d3b
commit 6d9a41a542
2 changed files with 3 additions and 1 deletions

2
NEWS
View File

@ -1,4 +1,6 @@
* Version 2.24 (unreleased) * Version 2.24 (unreleased)
* Removed space after comma in the output of ykval-gen-clients.
* Version 2.23 (released 2013-04-17) * Version 2.23 (released 2013-04-17)

View File

@ -114,7 +114,7 @@ for ($i=0; $i<$count; $i++) {
exit(1); exit(1);
} }
echo $client_id.", ".$secret."\n"; echo $client_id.",".$secret."\n";
} }
fclose($fh); fclose($fh);